I was wondering if you could give more details about the evaluation in CIFAR10. I looked into the Trainer class and noticed that the test evaluation is based on the parameter test_step line 81. I would like to know how did you obtain your results in Table 1 based on this code (i.e., the running script). Additionally, CIFAR10 class has a small bug, the drop_last (Line 42) should be False on the testing set, otherwise, it is not the original testing set.
I was wondering if you could give more details about the evaluation in CIFAR10. I looked into the Trainer class and noticed that the test evaluation is based on the parameter
test_stepline 81. I would like to know how did you obtain your results in Table 1 based on this code (i.e., the running script). Additionally, CIFAR10 class has a small bug, thedrop_last(Line 42) should beFalseon the testing set, otherwise, it is not the original testing set.