8000 DOC Specify base_estimator=None in CalibratedClassifierCV by alfaro96 · Pull Request #17393 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

DOC Specify base_estimator=None in CalibratedClassifierCV #17393

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions sklearn/calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ class CalibratedClassifierCV(BaseEstimator, ClassifierMixin,

Parameters
----------
base_estimator : instance BaseEstimator
base_estimator : estimator instance, default=None
The classifier whose output need to be calibrated to provide more
accurate `predict_proba` 4DC3 outputs.
accurate `predict_proba` outputs. The default classifier is
a :class:`~sklearn.svm.LinearSVC`.

method : 'sigmoid' or 'isotonic'
The method to use for calibration. Can be 'sigmoid' which
Expand Down
0