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 your original code opt = SGD(trainable_params(model), momentum=0.9, weight_decay=5e-4*batch_size, nesterov=True)
multiply 5e-4 by batch_size is redundant.
The text was updated successfully, but these errors were encountered:
in your original code
opt = SGD(trainable_params(model), momentum=0.9, weight_decay=5e-4*batch_size, nesterov=True)
multiply 5e-4 by batch_size is redundant.
The text was updated successfully, but these errors were encountered: