The problem I'm working on is a multiclass-classification. Have been reading through lot of articles and documentation, but not able to figure out which of Accuracy_Score or Cross_Val_Score should be used to find the prediction accuracy of a model.
I tried using both but the scores are different. Cross_Val_Score() gave me 71% right prediction, but 69.93% using Accuracy_Score().
What could be the possible reason for mismatch?



accuracy_scoreis the correct way to measure overall prediction accuracy? – ranit.b Feb 23 '19 at 14:23accuracy_scorewith your test set. (Assuming you're not into precision/recall, or confusion matrix) – gunes Feb 23 '19 at 14:26