Answers for "accuracy_score sklearn source code"

1

accuracy score sklearn syntax

>>> from sklearn.metrics import accuracy_score
>>> y_pred = [0, 2, 1, 3]
>>> y_true = [0, 1, 2, 3]
>>> accuracy_score(y_true, y_pred)
0.5
>>> accuracy_score(y_true, y_pred, normalize=False)
2
Posted by: Guest on June-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language