How can I evaluate my model? #234
-
❓ Questions and HelpWhat is your question?I followed the tutorial for custom task classification and passed 3 folders corresponding to train, test and validation. When I train the model I can see printed at the end the train accuracy and validation accuracy. However, I cannot see what's the test accuracy. Also, when I load the model I'd like to test with another dataset. What's the best way of evaluation ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi elcronos You can evaluate your model on a test data set using test method on the trainer as shown here Hope this clarifies your doubt |
Beta Was this translation helpful? Give feedback.
Hi elcronos
You can evaluate your model on a test data set using test method on the trainer as shown here
Furthermore, if you want to test your model on other datasets then use the inference mode of the model as show here
Hope this clarifies your doubt