def fbeta(true_label, prediction): return fbeta_score(true_label, prediction, beta=2, average='samples')