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
I found that during your network training, the learning rate has not been updated, it seems that learning rate has always been 2e-04, because your code when updating the learning rate is: lr = args.lr * (0.1 ** (epoch // 10)) ,however ,epoch range 0 to 10. So I want to ask if this learning rate is set like this. Look forward your reply!! Thanks!!
The text was updated successfully, but these errors were encountered:
I found that during your network training, the learning rate has not been updated, it seems that learning rate has always been 2e-04, because your code when updating the learning rate is:
lr = args.lr * (0.1 ** (epoch // 10))
,however ,epoch range 0 to 10. So I want to ask if this learning rate is set like this. Look forward your reply!! Thanks!!The text was updated successfully, but these errors were encountered: