Skip to content

Commit

Permalink
DOC: Fix the documentation of scoring LogisticCV (scikit-learn#8099)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaelVaroquaux authored and jnothman committed Dec 22, 2016
1 parent 83c92a1 commit b8450c8
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions sklearn/linear_model/logistic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1369,10 +1369,13 @@ class LogisticRegressionCV(LogisticRegression, BaseEstimator,
l2 penalty with liblinear solver. Prefer dual=False when
n_samples > n_features.
scoring : callabale
Scoring function to use as cross-validation criteria. For a list of
scoring functions that can be used, look at :mod:`sklearn.metrics`.
The default scoring option used is accuracy_score.
scoring : string, callable, or None
A string (see model evaluation documentation) or
a scorer callable object / function with signature
``scorer(estimator, X, y)``. For a list of scoring functions
that can be used, look at :mod:`sklearn.metrics`. The
default scoring option used is accuracy_score.
solver : {'newton-cg', 'lbfgs', 'liblinear', 'sag'}
Algorithm to use in the optimization problem.
Expand Down

0 comments on commit b8450c8

Please sign in to comment.