From f7c2e3b7103cb7af68705233a5e22691746ba668 Mon Sep 17 00:00:00 2001 From: verena <9377970+vpchung@users.noreply.github.com> Date: Wed, 1 May 2024 10:11:56 -0700 Subject: [PATCH] nit - remove newline --- score.py | 1 - 1 file changed, 1 deletion(-) diff --git a/score.py b/score.py index 11598d8..3308948 100644 --- a/score.py +++ b/score.py @@ -28,7 +28,6 @@ def score(gold, gold_col, pred, pred_col): """ roc = roc_auc_score(gold[gold_col], pred[pred_col]) pr = average_precision_score(gold[gold_col], pred[pred_col]) - return {"auc_roc": roc, "auprc": pr}