-
Notifications
You must be signed in to change notification settings - Fork 209
[DOC] fix incorrect references of classes in getting started page #2762
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -314,7 +314,7 @@ tasks related to time series similarity search. The estimators can be used stand | |
or as parts of pipelines, while the functions give you the tools to build your own | ||
estimators that would rely on similarity search at some point. | ||
|
||
The estimators are inheriting from the [BaseSimiliaritySearch](similarity_search.base.BaseSimiliaritySearch) | ||
The estimators are inheriting from the [BaseSimilaritySearch](similarity_search.base.BaseSimilaritySearch) | ||
class accepts as inputs 3D time series (n_cases, n_channels, n_timepoints) for the | ||
fit method. Univariate and single series can still be used, but will need to be reshaped | ||
to this format. | ||
|
@@ -356,7 +356,7 @@ and those that transform a collection. | |
|
||
### Transformers for Single Time Series | ||
|
||
Transformers inheriting from the [BaseSeriesTransformer](transformations.base.BaseSeriesTransformer) | ||
Transformers inheriting from the [BaseSeriesTransformer](transformations.series.base.BaseSeriesTransformer) | ||
in the `aeon.transformations.series` package transform a single (possibly multivariate) | ||
time series into a different time series or a feature vector. More info to follow. | ||
|
||
|
@@ -385,7 +385,7 @@ Most time series classification and regression algorithms are based on some form | |
transformation into an alternative feature space. For example, we might extract some | ||
summary time series features from each series, and fit a traditional classifier or | ||
regressor on these features. For example, we could use | ||
[Catch22](transformations.collection.feauture_based), which calculates 22 summary | ||
[Catch22](transformations.collection.feature_based.Catch22), which calculates 22 summary | ||
statistics for each series. | ||
|
||
```{code-block} python | ||
|
@@ -403,7 +403,7 @@ statistics for each series. | |
``` | ||
|
||
There are also series-to-series transformations, such as the | ||
[Padder](transformations.collection) to lengthen | ||
[Padder](transformations.collection.Padder) to lengthen | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think transformations.collection is correct, Padder is declared in the init and there is no file Padder, the class is in file _pad There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Weird enough, it tries to find a section with Also, I built it locally with Here's the page it tries to find when I put I have tested this locally, and it works perfectly fine. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have also tested it locally it is working fine with |
||
series and process unequal length collections. | ||
|
||
```{code-block} python | ||
|
@@ -438,7 +438,7 @@ For machine learning tasks such as classification, regression and clustering, th | |
`scikit-learn` `make_pipeline` functionality can be used if the transformer outputs | ||
a valid input type. | ||
|
||
The following example uses the [Catch22](transformations.collection.catch22.Catch22) | ||
The following example uses the [Catch22](transformations.collection.feature_based.Catch22) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think just transformations.collection.feature_based is sufficient. |
||
feature extraction transformer and a random forest classifier to classify. | ||
|
||
```{code-block} python | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good spot with typo, but it should just be transformations.collection.feature_based, it is declared in the init.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar to the padder case, when I just do
transformations.collection.feature_based
(without.Catch22
), it tries to find a local section in the getting started page with the id oftransformations.collection.feature_based
. But it works perfectly fine when I add.Catch22
in the end (locally tested)I have tested this locally, and
transformations.collection.feature_based.Catch22
works perfectly fine.