Skip to content

Commit

Permalink
changes to global metric confidence interval now resample non-NaN val…
Browse files Browse the repository at this point in the history
…ues, so CI will not be NaN
  • Loading branch information
Samuel Ackerman committed Feb 20, 2024
1 parent ce207b7 commit 6249538
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions prepare/metrics/roc_auc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
instance_targets = [{"roc_auc": np.nan, "score": np.nan, "score_name": "roc_auc"}] * 3
global_targets = {
"roc_auc": 0.5,
"roc_auc_ci_high": np.nan,
"roc_auc_ci_low": np.nan,
"roc_auc_ci_high": 0.5,
"roc_auc_ci_low": 0.9,
"score": 0.5,
"score_ci_high": np.nan,
"score_ci_low": np.nan,
"score_ci_high": 0.5,
"score_ci_low": 0.9,
"score_name": "roc_auc",
}

Expand Down

0 comments on commit 6249538

Please sign in to comment.