File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -487,7 +487,9 @@ class SVC(BaseSVC):
487
487
488
488
probability : boolean, optional (default=False)
489
489
Whether to enable probability estimates. This must be enabled prior
490
- to calling `fit`, and will slow down that method.
490
+ to calling `fit`, will slow down that method as it internally uses
491
+ 5-fold cross-validation, and `predict_proba` may be inconsistent with
492
+ `predict`. Read more in the :ref:`User Guide <scores_probabilities>`.
491
493
492
494
tol : float, optional (default=1e-3)
493
495
Tolerance for stopping criterion.
@@ -686,7 +688,9 @@ class NuSVC(BaseSVC):
686
688
687
689
probability : boolean, optional (default=False)
688
690
Whether to enable probability estimates. This must be enabled prior
689
- to calling `fit`, and will slow down that method.
691
+ to calling `fit`, will slow down that method as it internally uses
692
+ 5-fold cross-validation, and `predict_proba` may be inconsistent with
693
+ `predict`. Read more in the :ref:`User Guide <scores_probabilities>`.
690
694
691
695
tol : float, optional (default=1e-3)
692
696
Tolerance for stopping criterion.
You can’t perform that action at this time.
0 commit comments