File tree Expand file tree Collapse file tree 12 files changed +18
-18
lines changed Expand file tree Collapse file tree 12 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -115,4 +115,4 @@ an evaluation ``10_folds`` set meant to compute performance metrics using a
115
115
Examples
116
116
--------
117
117
118
- :ref: `sphx_glr_auto_examples_applications_face_recognition .py `
118
+ :ref: `sphx_glr_auto_examples_applications_plot_face_recognition .py `
Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ and the remaining ``n_columns`` labels provide the column partitioning.
154
154
showing how to generate a data matrix with biclusters and apply
155
155
this method to it.
156
156
157
- * :ref: `sphx_glr_auto_examples_bicluster_bicluster_newsgroups .py `: An example of finding
157
+ * :ref: `sphx_glr_auto_examples_bicluster_plot_bicluster_newsgroups .py `: An example of finding
158
158
biclusters in the twenty newsgroup dataset.
159
159
160
160
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ section.
199
199
200
200
* :ref: `sphx_glr_auto_examples_model_selection_plot_roc_crossval.py `,
201
201
* :ref: `sphx_glr_auto_examples_feature_selection_plot_rfe_with_cross_validation.py `,
202
- * :ref: `sphx_glr_auto_examples_model_selection_grid_search_digits .py `,
202
+ * :ref: `sphx_glr_auto_examples_model_selection_plot_grid_search_digits .py `,
203
203
* :ref: `sphx_glr_auto_examples_model_selection_grid_search_text_feature_extraction.py `,
204
204
* :ref: `sphx_glr_auto_examples_plot_cv_predict.py `,
205
205
* :ref: `sphx_glr_auto_examples_model_selection_plot_nested_cross_validation_iris.py `.
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ Note: the implementation of ``inverse_transform`` in :class:`PCA` with
160
160
161
161
.. topic :: Examples:
162
162
163
- * :ref: `sphx_glr_auto_examples_applications_face_recognition .py `
163
+ * :ref: `sphx_glr_auto_examples_applications_plot_face_recognition .py `
164
164
* :ref: `sphx_glr_auto_examples_decomposition_plot_faces_decomposition.py `
165
165
166
166
.. topic :: References:
@@ -796,7 +796,7 @@ stored components::
796
796
.. topic :: Examples:
797
797
798
798
* :ref: `sphx_glr_auto_examples_decomposition_plot_faces_decomposition.py `
799
- * :ref: `sphx_glr_auto_examples_applications_topics_extraction_with_nmf_lda .py `
799
+ * :ref: `sphx_glr_auto_examples_applications_plot_topics_extraction_with_nmf_lda .py `
800
800
* :ref: `sphx_glr_auto_examples_decomposition_plot_beta_divergence.py `
801
801
802
802
.. topic :: References:
@@ -890,7 +890,7 @@ when data can be fetched sequentially.
890
890
891
891
.. topic :: Examples:
892
892
893
- * :ref: `sphx_glr_auto_examples_applications_topics_extraction_with_nmf_lda .py `
893
+ * :ref: `sphx_glr_auto_examples_applications_plot_topics_extraction_with_nmf_lda .py `
894
894
895
895
.. topic :: References:
896
896
Original file line number Diff line number Diff line change @@ -669,7 +669,7 @@ Finally it is possible to discover the main topics of a corpus by
669
669
relaxing the hard assignment constraint of clustering, for instance by
670
670
using :ref: `NMF `:
671
671
672
- * :ref: `sphx_glr_auto_examples_applications_topics_extraction_with_nmf_lda .py `
672
+ * :ref: `sphx_glr_auto_examples_applications_plot_topics_extraction_with_nmf_lda .py `
673
673
674
674
675
675
Limitations of the Bag of Words representation
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ evaluated and the best combination is retained.
70
70
71
71
.. topic :: Examples:
72
72
73
- - See :ref: `sphx_glr_auto_examples_model_selection_grid_search_digits .py ` for an example of
73
+ - See :ref: `sphx_glr_auto_examples_model_selection_plot_grid_search_digits .py ` for an example of
74
74
Grid Search computation on the digits dataset.
75
75
76
76
- See :ref: `sphx_glr_auto_examples_model_selection_grid_search_text_feature_extraction.py ` for an example
@@ -131,7 +131,7 @@ increasing ``n_iter`` will always lead to a finer search.
131
131
132
132
.. topic :: Examples:
133
133
134
- * :ref: `sphx_glr_auto_examples_model_selection_randomized_search .py ` compares the usage and efficiency
134
+ * :ref: `sphx_glr_auto_examples_model_selection_plot_randomized_search .py ` compares the usage and efficiency
135
135
of randomized search and grid search.
136
136
137
137
.. topic :: References:
Original file line number Diff line number Diff line change @@ -474,7 +474,7 @@ and inferred labels::
474
474
for an example of classification report usage for text
475
475
documents.
476
476
477
- * See :ref: `sphx_glr_auto_examples_model_selection_grid_search_digits .py `
477
+ * See :ref: `sphx_glr_auto_examples_model_selection_plot_grid_search_digits .py `
478
478
for an example of classification report usage for
479
479
grid search with nested cross-validation.
480
480
@@ -610,7 +610,7 @@ binary classification and multilabel indicator format.
610
610
for an example of :func: `f1_score ` usage to classify text
611
611
documents.
612
612
613
- * See :ref: `sphx_glr_auto_examples_model_selection_grid_search_digits .py `
613
+ * See :ref: `sphx_glr_auto_examples_model_selection_plot_grid_search_digits .py `
614
614
for an example of :func: `precision_score ` and :func: `recall_score ` usage
615
615
to estimate parameters using grid search with nested cross-validation.
616
616
Original file line number Diff line number Diff line change @@ -220,10 +220,10 @@ This strategy is illustrated below.
220
220
221
221
.. topic :: Examples:
222
222
223
- * See :ref: `sphx_glr_auto_example_neighbors_plot_lof .py ` for
223
+ * See :ref: `sphx_glr_auto_examples_neighbors_plot_lof .py ` for
224
224
an illustration of the use of :class: `neighbors.LocalOutlierFactor `.
225
225
226
- * See :ref: `sphx_glr_auto_example_covariance_plot_outlier_detection .py ` for a
226
+ * See :ref: `sphx_glr_auto_examples_covariance_plot_outlier_detection .py ` for a
227
227
comparison with other anomaly detection methods.
228
228
229
229
.. topic :: References:
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ ignored by setting them to ``None``::
102
102
103
103
.. topic :: Examples:
104
104
105
- * :ref: `sphx_glr_auto_examples_feature_selection_feature_selection_pipeline .py `
105
+ * :ref: `sphx_glr_auto_examples_feature_selection_plot_feature_selection_pipeline .py `
106
106
* :ref: `sphx_glr_auto_examples_model_selection_grid_search_text_feature_extraction.py `
107
107
* :ref: `sphx_glr_auto_examples_plot_digits_pipe.py `
108
108
* :ref: `sphx_glr_auto_examples_plot_kernel_approximation.py `
@@ -265,5 +265,5 @@ and ignored by setting to ``None``::
265
265
266
266
.. topic :: Examples:
267
267
268
- * :ref: `sphx_glr_auto_examples_feature_stacker .py `
268
+ * :ref: `sphx_glr_auto_examples_plot_feature_stacker .py `
269
269
* :ref: `sphx_glr_auto_examples_hetero_feature_union.py `
Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ in the matrix. This format is thus suitable when there are many more missing
549
549
values than observed values.
550
550
551
551
:class: `Imputer ` can be used in a Pipeline as a way to build a composite
552
- estimator that supports imputation. See :ref: `sphx_glr_auto_examples_missing_values .py `
552
+ estimator that supports imputation. See :ref: `sphx_glr_auto_examples_plot_missing_values .py `.
553
553
554
554
.. _polynomial_features :
555
555
You can’t perform that action at this time.
0 commit comments