Imbalance in scikit-learn

前端 未结 5 563
北恋
北恋 2021-01-31 08:35

I\'m using scikit-learn in my Python program in order to perform some machine-learning operations. The problem is that my data-set has severe imbalance issues.

Is anyone

5条回答
  •  梦谈多话
    2021-01-31 08:54

    There is a new one here

    https://github.com/scikit-learn-contrib/imbalanced-learn

    It contains many algorithms in the following categories, including SMOTE

    • Under-sampling the majority class(es).
    • Over-sampling the minority class.
    • Combining over- and under-sampling.
    • Create ensemble balanced sets.

提交回复
热议问题