sklearn.metrics.f1_score — scikit-learn 0.22.2 documentation

PHOTO EMBED

Mon May 11 2020 22:20:25 GMT+0000 (Coordinated Universal Time)

Saved by @Fuad28 #python

>>> from sklearn.metrics import f1_score
>>> y_true = [0, 1, 2, 0, 1, 2]
>>> y_pred = [0, 2, 1, 0, 0, 1]
>>> f1_score(y_true, y_pred, average='macro')
0.26...
>>> f1_score(y_true, y_pred, average='micro')
0.33...
>>> f1_score(y_true, y_pred, average='weighted')
0.26...
>>> f1_score(y_true, y_pred, average=None)
array([0.8, 0. , 0. ])
>>> y_true = [0, 0, 0, 0, 0, 0]
>>> y_pred = [0, 0, 0, 0, 0, 0]
>>> f1_score(y_true, y_pred, zero_division=1)
1.0...
content_copyCOPY

https://scikit-learn.org/stable/modules/generated/sklearn.metrics.f1_score.html