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 setting of the last pooling layer is ('max_pool2d', [2, 1, 0]), which I think should be [2, 2, 0]. Maybe this is the reason of the poor performance?
The text was updated successfully, but these errors were encountered:
From the original work, it seems that the "same" padding is used instead of the "valid" padding. Therefore the padding in the config in miniimagenet_train.py should change from 0 to 1, i.e. '('conv2d', [32, 3, 3, 3, 1, 0])' to ('conv2d', [32, 3, 3, 3, 1, 1]),
After changing the padding in the config from 0 to 1, one can change the config of ('max_pool2d', [2, 1, 0]) to ('max_pool2d', [2, 2, 0]).
The setting of the last pooling layer is
('max_pool2d', [2, 1, 0])
, which I think should be [2, 2, 0]. Maybe this is the reason of the poor performance?The text was updated successfully, but these errors were encountered: