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
This is probably caused by the BN layer in the model. BN layers will track running statistics (mean and variance) in testing, so using a different batch_size from training setting (especially small batch_size like 1) will change the statistics of a minibatch, and lead to worse performance.
when I run the test scripts with batch_size=8:
the results look well:
but if I change batch_size to 1:
the results are different and worse than batch_size=8
The text was updated successfully, but these errors were encountered: