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
in Ch09_Modern_Convolutional_Networks/Network_in_Network(NiN).ipynb defines the NiN net model with:
#Global Average Pooling can be achieved by AdaptiveMaxPool2d with output size = (1,1)
self.avg1 = nn.AdaptiveMaxPool2d((1,1))
Is it a typo of nn.AdaptiveAvgPool2d or some deeper reasons behind this? Cause using Avg will train a lot slower and get bad train/val accuracy like 0.460 (epoch 5)
The text was updated successfully, but these errors were encountered:
Yes, that's a typo in the notebook. Thanks for pointing it out. Would you like to send in a PR fixing it and updating the results after running the notebook?
in Ch09_Modern_Convolutional_Networks/Network_in_Network(NiN).ipynb defines the NiN net model with:
Is it a typo of nn.AdaptiveAvgPool2d or some deeper reasons behind this? Cause using Avg will train a lot slower and get bad train/val accuracy like 0.460 (epoch 5)
The text was updated successfully, but these errors were encountered: