You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by ChrystleMyrnaLobo November 14, 2023
Hi! I'm using the MiniRocket Pytorch implementation for multivariate time series classification. Thanks for the GPU compatible implementation! :D
I want to use it with variable sequence_length input. I do not want to make the ts data fixed length (by padding). Instead, treat it as variable length itself and leverage the fully convolutional network of MiniRocket. The input shape for MiniRocket feature extractor is n_samples x n_variables x sequence_length and output is n_samples x 9996 x 1 which is independent of the input sequence_length.
While there are no errors in the forward pass of MiniRocket, the output features have nan values for last few features/filter output when input sequence_length is lesser than the seq_len of MiniRocketFeatures constructor. Could you please help me understand why some features are nan? What should be the seq_len of MiniRocketFeatures constructor if the X_train has variable sequence_length?
Discussed in #857
Originally posted by ChrystleMyrnaLobo November 14, 2023
Hi! I'm using the MiniRocket Pytorch implementation for multivariate time series classification. Thanks for the GPU compatible implementation! :D
I want to use it with variable sequence_length input. I do not want to make the ts data fixed length (by padding). Instead, treat it as variable length itself and leverage the fully convolutional network of MiniRocket. The input shape for MiniRocket feature extractor is
n_samples x n_variables x sequence_length
and output isn_samples x 9996 x 1
which is independent of the input sequence_length.While there are no errors in the forward pass of MiniRocket, the output features have nan values for last few features/filter output when input sequence_length is lesser than the
seq_len
of MiniRocketFeatures constructor. Could you please help me understand why some features are nan? What should be theseq_len
of MiniRocketFeatures constructor if the X_train has variable sequence_length?Minimal code to reproduce the issue
Output
Related discussion: this
The text was updated successfully, but these errors were encountered: