xgboost可以接受输入coo_matrix类型输入;
由于将数据经过tfidf转换容易内存爆掉;
所以需要压缩稀疏矩阵;
x_data=coo_matrix(x) for x in x_data
x_data=vstack(x_data)
然后传入xgboos分类器就OK了,就没有溢出了