Hi,
I am training a standard image recognition model. Unfortunately, when I run learn.lr_find(), no valid loss is printed. Instead, this is printed:
Why is this happening? How can I rectify this?
Note: I have not passed any data augmentation. Can this be the cause?
I’ve seen that before - did you run learn.recorder.plot() to see the graph?
The LR finder is basically testing 100+ learning rates, so even if the first few show up as gibberish, you’ll usually still get a graph to work with.
Data augmentation wont’ affect things here…I think it just had some odd results on some of the lr’s it tested. I’ve seen it before though and as I recall, I could still get a plot to work with that was just smaller range.
No, it won’t affect anything. LR Finder saves the model, runs it’s testing, then reloads it so you are exactly where you started before runnning the LR finder.
So no issues!