timeseriesAI / tsai

Time series Timeseries Deep Learning Machine Learning Python Pytorch fastai | State-of-the-art Deep Learning library for Time Series and Sequences in Pytorch / fastai
https://timeseriesai.github.io/tsai/
Apache License 2.0
5.07k stars 633 forks source link

font_size and title_size in confusion matrix #674

Closed georgemossad closed 1 year ago

georgemossad commented 1 year ago

hey there, when I try to increase the fontsize in arguments of the confusion using the below code as in the documentation: interp.plot_confusion_matrix(fontsize=15) I get this error: AttributeError: 'Figure' object has no property 'fontsize' also the same happens for title size.

oguiza commented 1 year ago

Hi @georgemossad, I'm not sure where you've seen that in the documentation. You should use:

learn.plot_confusion_matrix(title_fontzise=18, fontsize=12)

like it appears in tsai's doc.

oguiza commented 1 year ago

Closed due to the lack of response.