摘要: sys:1: DtypeWarning: Columns (2,4,5) have mixed types. Specify dtype option on import or set low_memory=False 阅读全文
posted @ 2019-03-19 15:54 詹岩鹏 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 在用SMOTE算法模块进行过采样(oversampling)时,pandas导入训练集合特征和label。 from imblearn.over_sampling import SMOTE # 导入SMOTE算法模块 # 处理不平衡数据 sm = SMOTE(random_state=122) # 处理过采样的方法 X, y = sm.fit_sample(X, y) /Users... 阅读全文
posted @ 2019-03-19 13:51 詹岩鹏 阅读(3162) 评论(0) 推荐(0) 编辑