@@ -160,7 +160,7 @@ class OneVsRestClassifier(MultiOutputMixin, ClassifierMixin,
160
160
An estimator object implementing :term:`fit` and one of
161
161
:term:`decision_function` or :term:`predict_proba`.
162
162
163
- n_jobs : int or None, optional ( default=None)
163
+ n_jobs : int, default=None
164
164
The number of jobs to use for the computation: the `n_classes`
165
165
one-vs-rest problems are computed in parallel.
166
166
@@ -521,7 +521,7 @@ class OneVsOneClassifier(MetaEstimatorMixin, ClassifierMixin, BaseEstimator):
521
521
An estimator object implementing :term:`fit` and one of
522
522
:term:`decision_function` or :term:`predict_proba`.
523
523
524
- n_jobs : int or None, optional ( default=None)
524
+ n_jobs : int, default=None
525
525
The number of jobs to use for the computation: the `n_classes * (
526
526
n_classes - 1) / 2` OVO problems are computed in parallel.
527
527
@@ -745,12 +745,12 @@ class OutputCodeClassifier(MetaEstimatorMixin, ClassifierMixin, BaseEstimator):
745
745
one-vs-the-rest. A number greater than 1 will require more classifiers
746
746
than one-vs-the-rest.
747
747
748
- random_state : int, RandomState instance or None , default=None
748
+ random_state : int, RandomState instance, default=None
749
749
The generator used to initialize the codebook.
750
750
Pass an int for reproducible output across multiple function calls.
751
751
See :term:`Glossary <random_state>`.
752
752
753
- n_jobs : int or None, optional ( default=None)
753
+ n_jobs : int, default=None
754
754
The number of jobs to use for the computation: the multiclass problems
755
755
are computed in parallel.
756
756
32B8
tr>
0 commit comments