Open
Description
While imbalanced-learn 0.X really focuses on samplers, over time we start to add additional methods like ensemble classifiers. We could think about releasing imbalanced-learn 1.X which could reorganize the methods. We could think about adding cost-sensitive learning method, for instance. One way could be:
- datasets
- metrics
- predictors
- samplers
- tests
- utils
In this case, we would probably import thing with an additional layer:
from imblearn.predictors.ensemble import BalancedRandomForest
from imblearn.samplers.under_sampling import RandomUnderSampler
@chkoar Could you add any thought in this thread.