Created
August 12, 2022 17:33
-
-
Save SubhadityaMukherjee/367d93c55be7f791e6b338a108cba85a to your computer and use it in GitHub Desktop.
howell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from fastai.interpret import * | |
from fastai.vision.widgets import * | |
interp = ClassificationInterpretation.from_learner(learn) | |
interp.plot_top_losses(5, nrows=1) | |
#We can use this to see what our model gets confused about. This will change as you train it more. | |
interp.most_confused() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment