Skip to content

Commit

Permalink
auroc does not compute CI by default from now on.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fajčík committed Sep 19, 2024
1 parent 72b8c5d commit c5f56c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lm_eval/tasks/benczechmark/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def aggregate_CI_avg_mcauroc(items):
probs = unzipped_list[1]

metric = evaluate.load("CZLC/mc_auroc")
result = metric.compute(predictions=probs, references=golds)
result = metric.compute(predictions=probs, references=golds, CI=True)
return result["mc_auroc_ci"]


Expand Down

0 comments on commit c5f56c3

Please sign in to comment.