8000 DOC fix broken links by DimitriPapadopoulos · Pull Request #26853 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

DOC fix broken links #26853

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/modules/ensemble.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ Ensembles: Gradient boosting, random forests, bagging, voting, stacking
base estimators built with a given learning algorithm in order to improve
generalizability / robustness over a single estimator.

Two very famous examples of ensemble methods are `gradient-boosted trees
<gradient_boosting>`_ and `random forests <forest>`_.
Two very famous examples of ensemble methods are :ref:`gradient-boosted trees
<gradient_boosting>` and :ref:`random forests <forest>`.

More generally, ensemble models can be applied to any base learner beyond
trees, in averaging methods such as :ref:`Bagging methods <bagging>`,
`model stacking <stacking>`_, or `Voting <voting_classifier>`_, or in
:ref:`model stacking <stacking>`, or :ref:`Voting <voting_classifier>`, or in
boosting, as :ref:`AdaBoost <adaboost>`.

.. contents::
Expand Down
2 changes: 1 addition & 1 deletion doc/whats_new/v0.22.rst
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ Changelog

- |Efficiency| :class:`decomposition.NMF` with `solver="mu"` fitted on sparse input
matrices now uses batching to avoid briefly allocating an array with size
(#non-zero elements, n_components). :pr:`15257` by `Mart Willocx <Maocx>`_.
(#non-zero elements, n_components). :pr:`15257` by :user:`Mart Willocx <Maocx>`.

- |Enhancement| :func:`decomposition.dict_learning` and
:func:`decomposition.dict_learning_online` now accept `method_max_iter` and
Expand Down
0