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
lr_mult causes the learning rate to converge at end_lr after only 1 epoch. If you want to use 2 or more epochs, then your learning rate will exceed end_lr and end up training on a learning rate that is far too high than intended.
The fix here is (when end_lr=1,start_lr=0.001,steps_per_epoch=1000,epochs=4):
When using
find_generator
:keras_lr_finder/keras_lr_finder/lr_finder.py
Line 76 in 7870043
lr_mult
causes the learning rate to converge atend_lr
after only 1 epoch. If you want to use 2 or more epochs, then your learning rate will exceedend_lr
and end up training on a learning rate that is far too high than intended.The fix here is (when
end_lr=1,start_lr=0.001,steps_per_epoch=1000,epochs=4
):Here's a sample script to show how the two functions diverge
while cur_lr <= end_lr
The text was updated successfully, but these errors were encountered: