How to evaluate the performance of test set in Trainer class

I am looking how to test huggingface model on test data. I am following this tutorial on audio classification . In this tutorial , we can send train and validation data to Trainer class. But i could not find a way to test the test set

1 Like

You can use trainer.predict().

2 Likes