8000 DOC Fix sphinx's links to Glossary (#21094) · scikit-learn/scikit-learn@01b9b5a · GitHub
[go: up one dir, main page]

Skip to content

Commit 01b9b5a

Browse files
authored
DOC Fix sphinx's links to Glossary (#21094)
1 parent 6c068e2 commit 01b9b5a

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

sklearn/covariance/_elliptic_envelope.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class EllipticEnvelope(OutlierMixin, MinCovDet):
4141
random_state : int, RandomState instance or None, default=None
4242
Determines the pseudo random number generator for shuffling
4343
the data. Pass an int for reproducible results across multiple function
44-
calls. See :term: `Glossary <random_state>`.
44+
calls. See :term:`Glossary <random_state>`.
4545
4646
Attributes
4747
----------

sklearn/covariance/_robust_covariance.py

< 8000 /div>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def c_step(
7171
random_state : int, RandomState instance or None, default=None
7272
Determines the pseudo random number generator for shuffling the data.
7373
Pass an int for reproducible results across multiple function calls.
74-
See :term: `Glossary <random_state>`.
74+
See :term:`Glossary <random_state>`.
7575
7676
Returns
7777
-------
@@ -269,7 +269,7 @@ def select_candidates(
269269
random_state : int, RandomState instance or None, default=None
270270
Determines the pseudo random number generator for shuffling the data.
271271
Pass an int for reproducible results across multiple function calls.
272-
See :term: `Glossary <random_state>`.
272+
See :term:`Glossary <random_state>`.
273273
274274
See Also
275275
---------
@@ -381,7 +381,7 @@ def fast_mcd(
381381
random_state : int, RandomState instance or None, default=None
382382
Determines the pseudo random number generator for shuffling the data.
383383
Pass an int for reproducible results across multiple function calls.
384-
See :term: `Glossary <random_state>`.
384+
See :term:`Glossary <random_state>`.
385385
386386
Returns
387387
-------
@@ -610,7 +610,7 @@ class MinCovDet(EmpiricalCovariance):
610610
random_state : int, RandomState instance or None, default=None
611611
Determines the pseudo random number generator for shuffling the data.
612612
Pass an int for reproducible results across multiple function calls.
613-
See :term: `Glossary <random_state>`.
613+
See :term:`Glossary <random_state>`.
614614
615615
Attributes
616616
----------

sklearn/ensemble/_hist_gradient_boosting/binning.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ class _BinMapper(TransformerMixin, BaseEstimator):
115115
Pseudo-random number generator to control the random sub-sampling.
116116
Pass an int for reproducible output across multiple
117117
function calls.
118-
See :term: `Glossary <random_state>`.
118+
See :term:`Glossary <random_state>`.
119119
n_threads : int, default=None
120120
Number of OpenMP threads to use. `_openmp_effective_n_threads` is called
121121
to determine the effective number of threads use, which takes cgroups CPU

sklearn/gaussian_process/_gpc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def optimizer(obj_func, initial_theta, bounds):
110110
random_state : int, RandomState instance or None, default=None
111111
Determines random number generation used to initialize the centers.
112112
Pass an int for reproducible results across multiple function calls.
113-
See :term: `Glossary <random_state>`.
113+
See :term:`Glossary <random_state>`.
114114
115115
Attributes
116116
----------
@@ -559,7 +559,7 @@ def optimizer(obj_func, initial_theta, bounds):
559559
random_state : int, RandomState instance or None, default=None
560560
Determines random number generation used to initialize the centers.
561561
Pass an int for reproducible results across multiple function calls.
562-
See :term: `Glossary <random_state>`.
562+
See :term:`Glossary <random_state>`.
563563
564564
multi_class : {'one_vs_rest', 'one_vs_one'}, default='one_vs_rest'
565565
Specifies how multi-class classification problems are handled.

sklearn/inspection/_permutation_importance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def permutation_importance(
171171
Pseudo-random number generator to control the permutations of each
172172
feature.
173173
Pass an int to get reproducible results across function calls.
174-
See :term: `Glossary <random_state>`.
174+
See :term:`Glossary <random_state>`.
175175
176176
sample_weight : array-like of shape (n_samples,), default=None
177177
Sample weights used in scoring.

sklearn/manifold/_locally_linear.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def null_space(
154154
random_state : int, RandomState instance, default=None
155155
Determines the random number generator when ``solver`` == 'arpack'.
156156
Pass an int for reproducible results across multiple function calls.
157-
See :term: `Glossary <random_state>`.
157+
See :term:`Glossary <random_state>`.
158158
"""
159159
if eigen_solver == "auto":
160160
if M.shape[0] > 200 and k + k_skip < 10:
@@ -268,7 +268,7 @@ def locally_linear_embedding(
268268
random_state : int, RandomState instance, default=None
269269
Determines the random number generator when ``solver`` == 'arpack'.
270270
Pass an int for reproducible results across multiple function calls.
271-
See :term: `Glossary <random_state>`.
271+
See :term:`Glossary <random_state>`.
272272
273273
n_jobs : int or None, default=None
274274
The number of parallel jobs to run for neighbors search.
@@ -608,7 +608,7 @@ class LocallyLinearEmbedding(TransformerMixin, _UnstableArchMixin, BaseEstimator
608608
random_state : int, RandomState instance, default=None
609609
Determines the random number generator when
610610
``eigen_solver`` == 'arpack'. Pass an int for reproducible results
611-
across multiple function calls. See :term: `Glossary <random_state>`.
611+
across multiple function calls. See :term:`Glossary <random_state>`.
612612
613613
n_jobs : int or None, default=None
614614
The number of parallel jobs to run.

sklearn/manifold/_mds.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def _smacof_single(
6161
random_state : int, RandomState instance or None, default=None
6262
Determines the random number generator used to initialize the centers.
6363
Pass an int for reproducible results across multiple function calls.
64-
See :term: `Glossary <random_state>`.
64+
See :term:`Glossary <random_state>`.
6565
6666
Returns
6767
-------
@@ -220,7 +220,7 @@ def smacof(
220220
random_state : int, RandomState instance or None, default=None
221221
Determines the random number generator used to initialize the centers.
222222
Pass an int for reproducible results across multiple function calls.
223-
See :term: `Glossary <random_state>`.
223+
See :term:`Glossary <random_state>`.
224224
225225
return_n_iter : bool, default=False
226226
Whether or not to return the number of iterations.
@@ -347,7 +347,7 @@ class MDS(BaseEstimator):
347347
random_state : int, RandomState instance or None, default=None
348348
Determines the random number generator used to initialize the centers.
349349
Pass an int for reproducible results across multiple function calls.
350-
See :term: `Glossary <random_state>`.
350+
See :term:`Glossary <random_state>`.
351351
352352
dissimilarity : {'euclidean', 'precomputed'}, default='euclidean'
353353
Dissimilarity measure to use:

sklearn/manifold/_t_sne.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ class TSNE(BaseEstimator):
619619
Determines the random number generator. Pass an int for reproducible
620620
results across multiple function calls. Note that different
621621
initializations might result in different local minima of the cost
622-
function. See :term: `Glossary <random_state>`.
622+
function. See :term:`Glossary <random_state>`.
623623
624624
method : str, default='barnes_hut'
625625
By default the gradient calculation algorithm uses Barnes-Hut

sklearn/neighbors/_kde.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ def sample(self, n_samples=1, random_state=None):
281281
Determines random number generation used to generate
282282
random samples. Pass an int for reproducible results
283283
across multiple function calls.
284-
See :term: `Glossary <random_state>`.
284+
See :term:`Glossary <random_state>`.
285285
286286
Returns
287287
-------

0 commit comments

Comments
 (0)
0