File tree 3 files changed +7
-5
lines changed
examples/gaussian_process
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -392,11 +392,11 @@ Currently transform only works for features X in a pipeline.
392
392
There's a long-standing discussion about
393
393
not being able to transform y in a pipeline.
394
394
Follow on github issue
395
- `#4143<https://github.com/scikit-learn/scikit-learn/issues/4143> `_.
395
+ `#4143 <https://github.com/scikit-learn/scikit-learn/issues/4143 >`_.
396
396
Meanwhile check out
397
397
:class: `sklearn.compose.TransformedTargetRegressor `,
398
- `pipegraph<https://github.com/mcasl/PipeGraph> `_,
399
- `imbalanced-learn<https://github.com/scikit-learn-contrib/imbalanced-learn> `_.
398
+ `pipegraph <https://github.com/mcasl/PipeGraph >`_,
399
+ `imbalanced-learn <https://github.com/scikit-learn-contrib/imbalanced-learn >`_.
400
400
Note that Scikit-learn solved for the case where y
401
401
has an invertible transformation applied before training
402
402
and inverted after prediction. Scikit-learn intends to solve for
Original file line number Diff line number Diff line change 33
33
four correct classifications and fails on one.
34
34
35
35
.. [1] Haussler, D. (1999). Convolution kernels on discrete structures
36
- (Vol. 646). Technical report, Department of Computer Science, University of
37
- California at Santa Cruz.
36
+ (Vol. 646). Technical report, Department of Computer Science, University
37
+ of California at Santa Cruz.
38
38
"""
39
39
print (__doc__ )
40
40
Original file line number Diff line number Diff line change @@ -1563,6 +1563,7 @@ class ExtraTreesClassifier(ForestClassifier):
1563
1563
- the sampling of the features to consider when looking for the best
1564
1564
split at each node (if ``max_features < n_features``)
1565
1565
- the draw of the splits for each of the `max_features`
1566
+
1566
1567
See :term:`Glossary <random_state>` for details.
1567
1568
1568
1569
verbose : int, optional (default=0)
@@ -1871,6 +1872,7 @@ class ExtraTreesRegressor(ForestRegressor):
1871
1872
- the sampling of the features to consider when looking for the best
1872
1873
split at each node (if ``max_features < n_features``)
1873
1874
- the draw of the splits for each of the `max_features`
1875
+
1874
1876
See :term:`Glossary <random_state>` for details.
1875
1877
1876
1878
verbose : int, optional (default=0)
You can’t perform that action at this time.
0 commit comments