Skip to content

sktime - HIVECOTEV2 model parameters issue #5173

Answered by fkiraly
monasound asked this question in Q&A
Discussion options

You must be logged in to vote

It looks like this comes from an interaction of TDE's defaults min_window and max_window_prop parameters, and your time series being - probably? - of length 9.

The default for max_window is length of your time series (instances), which I assume is 9. And for min_window it is the integer 10.

That should explain the warning?

As a side note, if your time series are very short, you may like to try simply flattening to an n times 9 data frame (instances times timepoits), and applying any sklearn classifier (e.g., RandomForestClassifier) - and use this as a "simple tabular" baseline.

Why: many of the "bespoke" classifiers assume long and/or reasonably smooth time series. Wheras 9 time points us…

Replies: 1 comment 4 replies

Comment options

You must be logged in to vote
4 replies
@monasound
Comment options

@fkiraly
Comment options

@fkiraly
Comment options

@monasound
Comment options

Answer selected by monasound
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
module:classification classification module: time series classification
2 participants