Training
learner = cnn_learner(databunch, pretrained_model, metrics=accuracy)
learn.fit_one_cycle(1,1e-2)Optimum Learning Rate
What is Learning Rate?

The 1cycle Policy
Last updated
learner = cnn_learner(databunch, pretrained_model, metrics=accuracy)
learn.fit_one_cycle(1,1e-2)
Last updated
learn.lr_find()
learn.recorder.plot(suggestion=True) # Draws where minimum numerical gradient is (which should be your learning rate)