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 alexnet network, it uses lr_mult/decay_mult param {1, 1, 2, 0},
In squeezenet, it doesn't set param, so caffe uses its default value, lr_mult and decay_mult is default set to 1. so its param {1, 1, 1, 1}
As we all know, we should not add weight decay to bias. So why you use default lr_mult and decay_mult?
The text was updated successfully, but these errors were encountered:
In alexnet network, it uses lr_mult/decay_mult param {1, 1, 2, 0},
In squeezenet, it doesn't set param, so caffe uses its default value, lr_mult and decay_mult is default set to 1. so its param {1, 1, 1, 1}
As we all know, we should not add weight decay to bias. So why you use default lr_mult and decay_mult?
The text was updated successfully, but these errors were encountered: