ImageLearner

I am unable to import the ImageLearner class. I am importing the vision.learner file as from fastai.vision.learner import *. I can successfully import the other classes in the vision.learner.py file like ClassificationLearner and ClassificationInterpretation. In the 2019 DL course lesson 3 camvid example, Jeremy seems to call the show_results() function that is part of the ImageLearner class on a regular learner object. ImageLearner is not mentioned in the documentation. I can easily extend the basic_train version of Learner, but I should be able to import the ImageLearner class from the fastai.vision.learner if I’m not mistaken.

That class doesn’t exist. The methods you seek are just part of Learner.

The latest commits must have refactored the code. Thank you!