train, test ,validation confusion matrix
45 views (last 30 days)
Show older comments
Yogini Prabhu
on 22 Jan 2021
Commented: Yogini Prabhu
on 20 Feb 2021
while the a confusion matrix is a map of correct and incorrect classifications; what are train ,test,validation confusion matrices? what is their meaning
2 Comments
Accepted Answer
Shubham Rawat
on 27 Jan 2021
Hi Yogini,
Confusion Matrices:
These are to evaluate the quality of the output of a classifier on the data set. The diagonal elements represent the number of points for which the predicted label is equal to the true label, while off-diagonal elements are those that are mislabeled by the classifier. The higher the diagonal values of the confusion matrix the better, indicating many correct predictions.
Train, Test , Validation Confusion matrices:
They uses different data for creating confusion matrix. For train confusion matrix it uses predicted values and actual values from train data. Similarly for the other confusion matrices.
You may also refer to the answer to this question:
Hope this helps!
5 Comments
More Answers (1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!