Showing statistics for module

Many operations on models show their train_loss and other statistics after they complete.

For example, learn.fine_tune(0) :
image

How do I show this statistics for a model loaded from a file?
I searched for Learner.show_statistics(), but there seems to be nothing like that :frowning:

Hi Daniil and welcome!

I think what you are looking for is Learner.validate() - per default, it will run the model on all items in the validation set and return the average loss and metrics.