Varying Length Time Series Classification #319
Replies: 3 comments 5 replies
-
One way is to add padding to the end of your sequences to make them all the same size. You can do it calling |
Beta Was this translation helpful? Give feedback.
-
Hi @christianbaumberger, @vrodriguezf , |
Beta Was this translation helpful? Give feedback.
-
Adding to this question and reading all the previous replies, is there a way to create batches of variable length time series, and pad them in the batch themselves (to the max of the batch length, or to the max of the dataset if the model requires this)? This is because in many tutorials, the batches are standardized with |
Beta Was this translation helpful? Give feedback.
-
Hello All
First of all, thanks for providing this great library! I would like to classify time series which are of varying length. Does the TSDatasets can handle varying legnth of the time series? All the examples in the tutorials have equal length time series. Here is how the dataframe looks like:
within each cell of the colum "timeseries", there is a numpy array of varying length. So far I've used tshresh to extract features on the time series and a random forest as a classifier. But I would like to try the methods implemented with tsai.
Thanks in advance for your help!
Kind regards,
Christian
Beta Was this translation helpful? Give feedback.
All reactions