Skip to content

Commit 6d27fca

Browse files
committed
make test pass?
1 parent 1be7c7e commit 6d27fca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sklearn/metrics/scorer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def make_scorer(score_func, greater_is_better=True, needs_proba=False,
514514
log_loss_scorer = make_scorer(log_loss, greater_is_better=False,
515515
needs_proba=True)
516516
log_loss_scorer._deprecation_msg = deprecation_msg
517-
# currently brier_score_loss don't support the shape of result
517+
# Currently brier_score_loss don't support the shape of result
518518
# returned by predict_proba (shape = (n_samples, n_classes)),
519519
# so we just pass the second column (probabilities of the positive class)
520520
brier_score_loss_scorer = make_scorer(lambda y_true, y_pred:

0 commit comments

Comments
 (0)