软件包:imbalanced-learn0.3.2
介绍文档:https://pypi.python.org/pypi/imbalanced-learn/
API文档:http://contrib.scikit-learn.org/imbalanced-learn/stable/
详细API:http://contrib.scikit-learn.org/imbalanced-learn/stable/api.html
imbalanced-learn
是一个python软件包,提供了一些数据集中常用的重新采样技术,显示出强烈的不平衡性。它与scikit-learn兼容,是scikit-learn-contrib 项目的一部分。
测试imbalanced-learn是在Python 2.7和Python 3.5以及3.6下工作的。依赖关系需求基于最后的scikit-learn版本:
SciPy的(> = 0.13.3)
numpy的(> = 1.8.2)
scikit学习(> = 0.19.0)
另外,为了运行这些例子,你需要matplotlib(> = 2.0.0)。
不平衡学习目前在PyPi的存储库上可用,你可以通过点安装它:
pip install -U imbalanced-learn
import imblearn as ll
该软件包也在Anaconda Cloud平台发布
更新sklearn到0.19以上
from imblearn.over_sampling import SMOTE
I’m using Jupyter Notebooks but because I have Windows I cannot use the terminal that came with Jupyter. I have anaconda so on the anaconda prompt I wrote:
pip install imblearn
Afterwards, I upgraded sklearn (because I’ve got an error of that):
pip install --upgrade sklearn
The upgrade and the install ran well in Anaconda prompt.
大多数分类算法只能在每个类的样本数大致相同的情况下才能达到最佳效果。高度倾斜的数据集,其中少数人数量严重超过一个或多个类,已被证明是一个挑战,同时变得越来越普遍。
解决这个问题的一种方法是对数据集进行重新采样,以抵消这种不平衡,希望达到一个更为稳健和公平的决策边界。
重新抽样技术分为两类:
1.对大多数class进行抽样采样。
2.过度抽样少数class类别。
3.结合过度采样和欠采样。
4.创建合奏平衡套。
以下列出了当前在这个模块中实现的方法。
将多的类别数据减少 , 随机少数过度抽样与替换
SMOTE
- 合成少数过采样技术[8]
bSMOTE
(1&2) - 类型1和2的边界线SMOTE [9]
SVM SMOTE
- 支持载体SMOTE [10]
ADASYN
- 适应不平衡学习的自适应综合抽样方法[15]
过采样然后是欠采样Over-sampling followed by under-sampling
SMOTE + Tomek
SMOTE + ENN
Ensemble sampling合奏采样
EasyEnsemble
BalanceCascade
在sphinx-gallery中提供了不同的算法。
from sklearn.datasets import make_classification
X, y = make_classification(n_samples=5000, n_features=2, n_informative=2,
n_redundant=0, n_repeated=0, n_classes=3,
n_clusters_per_class=1,
weights=[0.01, 0.05, 0.94],
class_sep=0.8, random_state=0)
from collections import Counter
print(sorted(Counter(y).items()))
from imblearn.over_sampling import RandomOverSampler,SMOTE
# ros = RandomOverSampler(random_state=0)
ros = SMOTE()
X_resampled, y_resampled = ros.fit_sample(X, y)
print(sorted(Counter(y_resampled).items()))
# [(0, 4674), (1, 4674), (2, 4674)]
from sklearn.svm import LinearSVC
clf = LinearSVC()
clf.fit(X_resampled, y_resampled) # doctest : +ELLIPSIS
print(clf.score(X_resampled, y_resampled))
随机抽样替换多数
提取大多数少数Tomek链接[1]
采用群集质心进行欠采样
NearMiss-(1&2&3)[2]
Condensend Nearest Neighbor [3]
单面选择[4]
Neighboorhood清理规则[5]
编辑最近的邻居[6]
实例硬度阈值[7]
重复编辑最近的邻居[14]
AllKNN [14]
from collections import Counter
from sklearn.datasets import make_classification
X, y = make_classification(n_samples=5000, n_features=2, n_informative=2,
n_redundant=0, n_repeated=0, n_classes=3,
n_clusters_per_class=1,
weights=[0.01, 0.05, 0.94],
class_sep=0.8, random_state=0)
print(sorted(Counter(y).items()))
# [(0, 64), (1, 262), (2, 4674)]
from imblearn.under_sampling import ClusterCentroids
cc = ClusterCentroids(random_state=0)
X_resampled, y_resampled = cc.fit_sample(X, y)
print(sorted(Counter(y_resampled).items()))
# [(0, 64), (1, 64), (2, 64)]
参考文献:
[1] :I. Tomek,“CNN的两种修改”,In Systems,Man,and Cybernetics,IEEE Transactions on,6,pp 769-772,2010。
[2] :I. Mani,I. Zhang。“kNN不平衡数据分布的方法:涉及信息提取的案例研究”,2003年在不平衡数据集学习研讨会论文集。
[3] :体育哈特,“凝聚最近邻规则,”在信息理论,IEEE交易,第一卷。14(3),第515-516页,1968。
[4] :M. Kubat,S. Matwin,“解决不平衡训练集的诅咒:单方面的选择”,ICML,vol。97,pp.179-186,1997。
[5] :J. Laurikkala,“通过平衡阶级分配来改善困难小班的识别”,Springer Berlin Heidelberg,2001年。
[6] :D. Wilson,“使用编辑数据的最近邻规则的渐近性质”,在IEEE Transactions on Systems,Man,and Cybernetrics,vol。2(3),408-421页,1972。
[7] :D. Smith,Michael R.,Tony Martinez和Christophe Giraud-Carrier。“数据复杂性的实例级分析”机器学习95.2(2014):225-256。
[8] :NV Chawla,KW Bowyer,LOHall,WP Kegelmeyer,“SMOTE:synthetic minority over-sampling technique,”Journal of artificial intelligence research,321-357,2002。
[9] :H. Han,W。Wen-Yuan,M. Bing-Huan,“边界线SMOTE:一种新的过采样方法在不平衡数据集学习”,智能计算进展,878-887,2005。
[10]:HM Nguyen,EW Cooper,K. Kamei,“不平衡数据分类的边界过采样”,国际知识工程和软数据范例,3(1),pp.4-21,2001。
[11]:G. Batista,RC Prati,MC Monard。“一个平衡机器学习训练数据的几种方法的行为的研究,”ACM Sigkdd探索通讯6(1),20-29,2004。
[12]:G.Batista,B.Bazzan,M.Monard,“平衡关键词自动标注的训练数据:一个案例研究”,WOB,10-18,2003。
[13](1,2):XY刘,吴J.和ZH周,“探索欠了类不平衡学习,”在系统,人在IEEE Transactions与控制,B部分(控制论),第二卷。39,没有。2,第539-550页,2009年4月。
[14](1,2):I.托梅克,“在编辑的最近邻规则的实验,”系统,人,和控制论,第一卷IEEE交易。6(6),第448-452页,1976年6月。
[15]:他,海博,杨白,爱德华加西亚,李树涛。“ADASYN:自适应合成采样方法的不平衡学习,”在IEEE国际神经网络联合会议(IEEE世界大会的计算智能),页1322-1328,2008年。
imblearn.under_sampling欠采样方法
在imblearn.under_sampling提供的方法下的试样的数据集。
原型生成
该imblearn.under_sampling.prototype_generation子模块包含了为了平衡数据集生成新样本的方法。
under_sampling.CondensedNearestNeighbour([…]) | 基于压缩最近邻法进行欠采样的类。 |
---|---|
under_sampling.EditedNearestNeighbours([…]) | 根据编辑的最近邻方法执行欠采样的类。 |
under_sampling.RepeatedEditedNearestNeighbours([…]) | 根据重复编辑的最近邻居方法执行欠采样的类。 |
under_sampling.AllKNN([比例,…]) | 根据AllKNN方法执行欠采样的类。 |
under_sampling.InstanceHardnessThreshold([…]) | 根据实例硬度阈值执行欠采样的类。 |
under_sampling.NearMiss([比例,…]) | 根据NearMiss方法执行欠采样的类。 |
under_sampling.NeighbourhoodCleaningRule([…]) | 根据邻居清理规则执行欠采样的类。 |
under_sampling.OneSidedSelection([比例,…]) | 基于片面选择方法执行欠采样的类。 |
under_sampling.RandomUnderSampler([比例,…]) | 类执行随机欠采样。 |
under_sampling.TomekLinks([比例,…]) | 通过删除Tomek的链接来执行欠采样的类。 |
在imblearn.over_sampling提供了一组方法来执行过采样的。
over_sampling.ADASYN([ratio,random_state,…]) | 使用ADASYN执行过采样。 |
---|---|
over_sampling.RandomOverSampler([比例,…]) | 类执行随机过采样。 |
over_sampling.SMOTE ([ratio,random_state,…]) |
使用SMOTE执行过采样的类。 |
combine.SMOTEENN([ratio,random_state,…]) | 使用SMOTE执行过采样并使用ENN进行清洁的类。 |
---|---|
combine.SMOTETomek([ratio,random_state,…]) | 类使用SMOTE执行过采样并使用Tomek链接进行清理。 |
该**imblearn.ensemble模块包括生成组合在集合内的欠采样子集的方法。
ensemble.BalanceCascade([比例,…]) | 通过使用估计器迭代地对不平衡数据集进行欠采样来创建平衡集的集合。 |
---|---|
ensemble.BalancedBaggingClassifier([…]) | 带有额外平衡的装袋分类器。 |
ensemble.EasyEnsemble([比例,…]) | 通过迭代应用随机欠采样来创建集合集。 |
该imblearn.pipeline模块实现实用程序来构建一个复合估计器,作为变换链,样本和估计器。
pipeline.Pipeline(步骤[,内存]) | 使用最终估计器进行变换和重新采样的流水线。 |
---|---|
pipeline.make_pipeline (*脚步) |
从给定的估计者构建管道。 |
该imblearn.metrics模块包括分数函数,性能指标和成对指标和距离计算。
metrics.classification_report_imbalanced(…) | 根据与不平衡相关的指标构建分类报告 |
---|---|
metrics.sensitivity_specificity_support(…) | 计算每个班级的敏感度,特异度和支持度 |
metrics.sensitivity_score(y_true,y_pred [,…]) | 计算灵敏度 |
metrics.specificity_score(y_true,y_pred [,…]) | 计算特异性 |
metrics.geometric_mean_score(y_true,y_pred) | 计算几何平均值 |
metrics.make_index_balanced_accuracy([…]) | 使用索引平衡准确性平衡任何得分功能 |
在imblearn.datasets提供的方法来产生不平衡数据。
datasets.make_imbalance(X,y,比率[,…]) | 将数据集转换为特定比例的不平衡数据集。 |
---|---|
datasets.fetch_datasets([data_home,…]) | 从Zenodo加载基准数据集,如果需要的话下载。 |
imblearn.utils:公用事业
该imblearn.utils模块包含各种实用程序。
utils.estimator_checks.check_estimator | |
---|---|
utils.check_neighbors_object(nn_name,nn_object) | 检查对象是一致的是一个NN。 |
utils.check_ratio(ratio,y,sampling_type,…) | 采样器的比率验证。 |
utils.hash_X_y(X,y [,n_samples]) | 计算输入数组的哈希值。 |