File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 32
32
"PatchExtractor" ,
33
33
"PolynomialFeatures" ,
34
34
"QuadraticDiscriminantAnalysis" ,
35
- "RandomizedSearchCV" ,
36
35
"RobustScaler" ,
37
36
"SelfTrainingClassifier" ,
38
37
"SparseRandomProjection" ,
Original file line number Diff line number Diff line change @@ -1420,7 +1420,7 @@ class RandomizedSearchCV(BaseSearchCV):
1420
1420
1421
1421
Parameters
1422
1422
----------
1423
- estimator : estimator object.
1423
+ estimator : estimator object
1424
1424
A object of that type is instantiated for each grid point.
1425
1425
This is assumed to implement the scikit-learn estimator interface.
1426
1426
Either estimator needs to provide a ``score`` function,
@@ -1692,6 +1692,12 @@ class RandomizedSearchCV(BaseSearchCV):
1692
1692
1693
1693
.. versionadded:: 1.0
1694
1694
1695
+ See Also
1696
+ --------
1697
+ GridSearchCV : Does exhaustive search over a grid of parameters.
1698
+ ParameterSampler : A generator over parameter settings, constructed from
1699
+ param_distributions.
1700
+
1695
1701
Notes
1696
1702
-----
1697
1703
The parameters selected are those that maximize the score of the held-out
@@ -1705,12 +1711,6 @@ class RandomizedSearchCV(BaseSearchCV):
1705
1711
`pre_dispatch` many times. A reasonable value for `pre_dispatch` is `2 *
1706
1712
n_jobs`.
1707
1713
1708
- See Also
1709
- --------
1710
- GridSearchCV : Does exhaustive search over a grid of parameters.
1711
- ParameterSampler : A generator over parameter settings, constructed from
1712
- param_distributions.
1713
-
1714
1714
Examples
1715
1715
--------
1716
1716
>>> from sklearn.datasets import load_iris
You can’t perform that action at this time.
0 commit comments