Is there a clean way to perform evaluation on a model without using the Trainer?
I have scripts which train and then evaluation my model. I want to perform further evaluation on the trained model - for now I’ve hacked my training script so I create a Trainer but don’t call train() - is there a better way of doing this?
You can also have a look at our new examples that don’t use a Trainer (all the run_xxx_no_trainer in the task subfolders of the examples folder of the repo).