I am using fastai to plot a confusion matrix of my fastai model. I am using this code:
interp = ClassificationInterpretation.from_learner(learn)
interp.plot_confusion_matrix()
My classes are [0,1,2,3,4,5,6,7,8,9,10,11,12,13].
The confusion matrix prints the classes out of order, as such: [0,1,10,11,12,13,4,5,6,7,8,9]
How do I fix this?