python imblearn toolbox 解决数据不平衡问题(四)——联合采样、集成采样、其它细节
一、Combinationofover-andunder-sampling主要是解决SMOTE算法中生成噪声样本,解决方法为cleaningthespaceresultingfromover-sampling。主要思路是先使用SMOTE进行上采样,再通过Tomek’slink或者editednearest-neighbours方法去获得一个cleanerspace.对应的函数为:SMOTETome