8000 DOC Remove plot_beta_divergence.py by jeremiedbb · Pull Request #25801 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

DOC Remove plot_beta_divergence.py #25801

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 1 commit into from
Mar 10, 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
11 changes: 7 additions & 4 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,11 +268,14 @@
"auto_examples/linear_model/plot_bayesian_ridge": (
"auto_examples/linear_model/plot_ard"
),
"examples/model_selection/grid_search_text_feature_extraction.py": (
"examples/model_selection/plot_grid_search_text_feature_extraction.py"
"auto_examples/model_selection/grid_search_text_feature_extraction.py": (
"auto_examples/model_selection/plot_grid_search_text_feature_extraction.py"
),
"examples/miscellaneous/plot_changed_only_pprint_parameter": (
"examples/miscellaneous/plot_estimator_representation"
"auto_examples/miscellaneous/plot_changed_only_pprint_parameter": (
"auto_examples/miscellaneous/plot_estimator_representation"
),
"auto_examples/decomposition/plot_beta_divergence": (
"auto_examples/applications/plot_topics_extraction_with_nmf_lda"
),
}
html_context["redirects"] = redirects
Expand Down
Binary file added doc/images/beta_divergence.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 1 addition & 3 deletions doc/modules/decomposition.rst
Original file line number Diff line number Diff line change
Expand Up @@ -879,8 +879,7 @@ defined by :
.. math::
d_{\beta}(X, Y) = \sum_{i,j} \frac{1}{\beta(\beta - 1)}(X_{ij}^\beta + (\beta-1)Y_{ij}^\beta - \beta X_{ij} Y_{ij}^{\beta - 1})

.. figure:: ../auto_examples/decomposition/images/sphx_glr_plot_beta_divergence_001.png
:target: ../auto_examples/decomposition/plot_beta_divergence.html
.. image:: ../images/beta_divergence.png
:align: center
:scale: 75%

Expand Down Expand Up @@ -919,7 +918,6 @@ stored components::

* :ref:`sphx_glr_auto_examples_decomposition_plot_faces_decomposition.py`
* :ref:`sphx_glr_auto_examples_applications_plot_topics_extraction_with_nmf_lda.py`
* :ref:`sphx_glr_auto_examples_decomposition_plot_beta_divergence.py`

.. _MiniBatchNMF:

Expand Down
29 changes: 0 additions & 29 deletions examples/decomposition/plot_beta_divergence.py

This file was deleted.

0