Trainer.predict()
will return the model’s predicted labels for your dataset, while Trainer.evaluate()
will go one step further and compute the loss + anything else you’ve defined in the compute_metrics()
function
2 Likes