You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The AverageMeter in this file only calculates the acc with the history list, which is with self.length long. So the final ouput is not right. It can be reproduced by changing the batch size of the test, the acc will also change, which is abnormal.
AverageMeter
in TIN/utils.py which is used in test.py is not correct.The
AverageMeter
in this file only calculates the acc with the history list, which is with self.length long. So the final ouput is not right. It can be reproduced by changing the batch size of the test, the acc will also change, which is abnormal.I think it should use
AverageMeter
in this.The text was updated successfully, but these errors were encountered: