pere's picture
working version
8993bac
raw history blame
No virus
273 Bytes
import sklearn.metrics
import numpy as np
def f1_macro(targets, predictions):
targets, predictions = np.asarray(targets).astype(int), np.asarray(predictions).astype(int)
return {"f1_macro": 100*sklearn.metrics.f1_score(targets, predictions, average='macro')}