What is the difference in sklearn, between
accuracy_score(y_test,y_pred) and model.score(X_test,y_test)?
I tried both of these in several models and both of them gave me the same results as their output. So what is the exact difference between them? Which one is the most useful?