t5-nynorsk-oversetter / my_metrics.py
pere's picture
first commit
5e4d91f
import sklearn.metrics
import numpy as np
def f1_macro(targets, predictions):
targets, predictions = np.asarray(targets).astype(str), np.asarray(predictions).astype(str)
return {"f1_macro": 100*sklearn.metrics.f1_score(targets, predictions, average='macro')}