Reputation: 2244
I want to create a neural network model that classifies an input into four classes: Class A, B, C and D. Each Class can be either 0 and 1. What measures shall I use to evaluate my model. Can I use the Precision , Recall, F-measure measures to evaluate the model?
Upvotes: 0
Views: 292
Reputation: 4264
It depends on the data you have,
Sklearn have packages for doing this, you could refer to classification report, Area under ROC .
Upvotes: 1