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?