Skip to content

Commit

Permalink
DOC Fix various sphinx warnings. (#15692)
Browse files Browse the repository at this point in the history
  • Loading branch information
cmarmo authored and thomasjpfan committed Nov 21, 2019
1 parent e06cc9e commit 0c2da0c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/faq.rst
Expand Up @@ -392,11 +392,11 @@ Currently transform only works for features X in a pipeline.
There's a long-standing discussion about
not being able to transform y in a pipeline.
Follow on github issue
`#4143<https://github.com/scikit-learn/scikit-learn/issues/4143>`_.
`#4143 <https://github.com/scikit-learn/scikit-learn/issues/4143>`_.
Meanwhile check out
:class:`sklearn.compose.TransformedTargetRegressor`,
`pipegraph<https://github.com/mcasl/PipeGraph>`_,
`imbalanced-learn<https://github.com/scikit-learn-contrib/imbalanced-learn>`_.
`pipegraph <https://github.com/mcasl/PipeGraph>`_,
`imbalanced-learn <https://github.com/scikit-learn-contrib/imbalanced-learn>`_.
Note that Scikit-learn solved for the case where y
has an invertible transformation applied before training
and inverted after prediction. Scikit-learn intends to solve for
Expand Down
4 changes: 2 additions & 2 deletions examples/gaussian_process/plot_gpr_on_structured_data.py
Expand Up @@ -33,8 +33,8 @@
four correct classifications and fails on one.
.. [1] Haussler, D. (1999). Convolution kernels on discrete structures
(Vol. 646). Technical report, Department of Computer Science, University of
California at Santa Cruz.
(Vol. 646). Technical report, Department of Computer Science, University
of California at Santa Cruz.
"""
print(__doc__)

Expand Down
2 changes: 2 additions & 0 deletions sklearn/ensemble/_forest.py
Expand Up @@ -1563,6 +1563,7 @@ class ExtraTreesClassifier(ForestClassifier):
- the sampling of the features to consider when looking for the best
split at each node (if ``max_features < n_features``)
- the draw of the splits for each of the `max_features`
See :term:`Glossary <random_state>` for details.
verbose : int, optional (default=0)
Expand Down Expand Up @@ -1871,6 +1872,7 @@ class ExtraTreesRegressor(ForestRegressor):
- the sampling of the features to consider when looking for the best
split at each node (if ``max_features < n_features``)
- the draw of the splits for each of the `max_features`
See :term:`Glossary <random_state>` for details.
verbose : int, optional (default=0)
Expand Down

0 comments on commit 0c2da0c

Please sign in to comment.