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
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
You can use trainer.predict()
.