Skip to content

Commit

Permalink
fixes mutated hyperlinks in #6023
Browse files Browse the repository at this point in the history
  • Loading branch information
geetu040 committed Mar 12, 2024
1 parent 85b9c75 commit ac9bb24
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion sktime/classification/dictionary_based/_boss.py
Expand Up @@ -112,7 +112,7 @@ class BOSSEnsemble(BaseClassifier):
Notes
-----
For the Java version, see
- ``Original Publication <https://github.com/patrickzib/SFA>``_.
- `Original Publication <https://github.com/patrickzib/SFA>`_.
- `TSML <https://github.com/uea-machine-learning/tsml/blob/master/src/main/java/
tsml/classifiers/dictionary_based/BOSS.java>`_.
Expand Down
2 changes: 1 addition & 1 deletion sktime/classification/dictionary_based/_muse.py
Expand Up @@ -101,7 +101,7 @@ class MUSE(BaseClassifier):
Notes
-----
For the Java version, see
- ``Original Publication <https://github.com/patrickzib/SFA>``_.
- `Original Publication <https://github.com/patrickzib/SFA>`_.
- `MUSE
<https://github.com/uea-machine-learning/tsml/blob/master/src/main/java/tsml/
classifiers/multivariate/WEASEL_MUSE.java>`_.
Expand Down
2 changes: 1 addition & 1 deletion sktime/classification/dictionary_based/_weasel.py
Expand Up @@ -103,7 +103,7 @@ class WEASEL(BaseClassifier):
Notes
-----
For the Java version, see
- ``Original Publication <https://github.com/patrickzib/SFA>``_.
- `Original Publication <https://github.com/patrickzib/SFA>`_.
- `TSML <https://github.com/uea-machine-learning/tsml/blob/master/src/main/java
/tsml/classifiers/dictionary_based/WEASEL.java>`_.
Expand Down
2 changes: 1 addition & 1 deletion sktime/classification/feature_based/_catch22_classifier.py
Expand Up @@ -53,7 +53,7 @@ class Catch22Classifier(_DelegatedClassifier):
Notes
-----
Authors ``catch22ForestClassifier <https://github.com/chlubba/sktime-catch22>``_.
Authors `catch22ForestClassifier <https://github.com/chlubba/sktime-catch22>`_.
For the Java version, see `tsml <https://github.com/uea-machine-learning/tsml/blob
/master/src/main/java/tsml/classifiers/hybrids/Catch22Classifier.java>`_.
Expand Down
2 changes: 1 addition & 1 deletion sktime/clustering/k_means/_k_means_tslearn.py
Expand Up @@ -51,7 +51,7 @@ class TimeSeriesKMeansTslearn(_TslearnAdapter, BaseClusterer):
parallelization.
``None`` means 1 unless in a :obj:`joblib.parallel_backend` context.
``-1`` means using all processors. See scikit-learns'
``Glossary <https://scikit-learn.org/stable/glossary.html#term-n-jobs>``_
`Glossary <https://scikit-learn.org/stable/glossary.html#term-n-jobs>`_
for more details.
dtw_inertia: bool (default: False)
Expand Down
2 changes: 1 addition & 1 deletion sktime/clustering/kernel_k_means.py
Expand Up @@ -48,7 +48,7 @@ class TimeSeriesKernelKMeans(_TslearnAdapter, BaseClusterer):
computations.
``None`` means 1 unless in a :obj:`joblib.parallel_backend` context.
``-1`` means using all processors. See scikit-learns'
``Glossary <https://scikit-learn.org/stable/glossary.html#term-n-jobs>``_
`Glossary <https://scikit-learn.org/stable/glossary.html#term-n-jobs>`_
for more details.
random_state: int or np.random.RandomState instance or None, defaults = None
Determines random number generation for centroid initialization.
Expand Down
2 changes: 1 addition & 1 deletion sktime/dists_kernels/gak.py
Expand Up @@ -21,7 +21,7 @@ class GAKernel(_TslearnPwTrafoAdapter, BasePairwiseTransformerPanel):
The number of jobs to run in parallel.
``None`` means 1 unless in a :obj:`joblib.parallel_backend` context.
``-1`` means using all processors. See scikit-learns'
``Glossary <https://scikit-learn.org/stable/glossary.html#term-n-jobs>``__
`Glossary <https://scikit-learn.org/stable/glossary.html#term-n-jobs>`_
for more details.
verbose : int, optional, default=0
The verbosity level: if non zero, progress messages are printed.
Expand Down
4 changes: 2 additions & 2 deletions sktime/transformations/series/detrend/_deseasonalize.py
Expand Up @@ -50,7 +50,7 @@ class Deseasonalizer(BaseTransformer):
-----
For further explanation on seasonal components and additive vs.
multiplicative models see
``Forecasting: Principles and Practice <https://otexts.com/fpp3/components.html>``_.
`Forecasting: Principles and Practice <https://otexts.com/fpp3/components.html>`_.
Seasonal decomposition is computed using `statsmodels
<https://www.statsmodels.org/stable/generated/statsmodels.tsa.seasonal.seasonal_decompose.html>`_.
Expand Down Expand Up @@ -286,7 +286,7 @@ class ConditionalDeseasonalizer(Deseasonalizer):
-----
For further explanation on seasonal components and additive vs.
multiplicative models see
``Forecasting: Principles and Practice <https://otexts.com/fpp3/components.html>``_.
`Forecasting: Principles and Practice <https://otexts.com/fpp3/components.html>`_.
Seasonal decomposition is computed using `statsmodels
<https://www.statsmodels.org/stable/generated/statsmodels.tsa.seasonal.seasonal_decompose.html>`_.
Expand Down

0 comments on commit ac9bb24

Please sign in to comment.