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
VGGBase class has a loop for layer, activation in zip(layers, activations) which iterates over pairs of sequences of uneven length for VGGs with batch normalization. This causes blocks like Conv->BN->ReLU->Conv->BN->ReLU to be replaced by blocks like Conv->ReLU->BN->ReLU. It would probably be a good idea to use VGG16BN/VGG19BN definition from SWA/SWAG - it appears to be correct.
The text was updated successfully, but these errors were encountered:
VGGBase class has a loop
for layer, activation in zip(layers, activations)
which iterates over pairs of sequences of uneven length for VGGs with batch normalization. This causes blocks likeConv->BN->ReLU->Conv->BN->ReLU
to be replaced by blocks likeConv->ReLU->BN->ReLU
. It would probably be a good idea to use VGG16BN/VGG19BN definition from SWA/SWAG - it appears to be correct.The text was updated successfully, but these errors were encountered: