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
Is your feature request related to a problem? Please describe
By default, imblearn can handle 2D data (samples, features). I often work with time series and also try to classify time series. As a result, an imbalance between the classes can also occur. But I can not use the imblearn package as time series are 3-dimensional (e.g. samples, features, sequence_length)
Describe the solution you'd like
I would like to have the option to also pass 3D time series data to the many applications imblearn offers. Currently, I wrote, e.g., my own oversampler, which I present as the "alternatives section". This code can of course be reused by the authors of imblearn for the described enhancement.
I’m excited to contribute to this important enhancement of supporting time series / 3D data in imbalanced-learn.
My plan is to start by analyzing which existing resampling algorithms can be adapted for 3D inputs (e.g., per timestep or flattened approach), and then propose a backward-compatible implementation strategy.
I’d appreciate any guidance on design decisions or pointers to relevant parts of the codebase to begin with. Looking forward to collaborating!
Uh oh!
There was an error while loading. Please reload this page.
Is your feature request related to a problem? Please describe
By default,
imblearn
can handle 2D data (samples, features). I often work with time series and also try to classify time series. As a result, an imbalance between the classes can also occur. But I can not use the imblearn package as time series are 3-dimensional (e.g. samples, features, sequence_length)Describe the solution you'd like
I would like to have the option to also pass 3D time series data to the many applications
imblearn
offers. Currently, I wrote, e.g., my own oversampler, which I present as the "alternatives section". This code can of course be reused by the authors of imblearn for the described enhancement.Describe alternatives you've considered
The text was updated successfully, but these errors were encountered: