Sklearn - 无法在随机林分类器中使用编码数据

时间:2013-06-19 06:14:58

标签: python encoding numpy scipy scikit-learn

我是scikit-learn的新手。我正在尝试使用预处理。 OneHotEncoder用于编码我的训练和测试数据。编码后,我尝试使用该数据训练随机森林分类器。但是在安装时我得到以下错误。 (这里是错误跟踪)

    99         model.fit(X_train, y_train)
    100         preds = model.predict_proba(X_cv)[:, 1]
    101 

C:\Python27\lib\site-packages\sklearn\ensemble\forest.pyc in fit(self, X, y, sample_weight)
    288 
    289         # Precompute some data
--> 290         X, y = check_arrays(X, y, sparse_format="dense")
    291         if (getattr(X, "dtype", None) != DTYPE or
    292                 X.ndim != 2 or

C:\Python27\lib\site-packages\sklearn\utils\validation.pyc in check_arrays(*arrays, **options)
    200                     array = array.tocsc()
    201                 elif sparse_format == 'dense':
--> 202                     raise TypeError('A sparse matrix was passed, but dense '
    203                                     'data is required. Use X.toarray() to '
    204                                     'convert to a dense numpy array.')

TypeError: A sparse matrix was passed, but dense data is required. Use X.toarray() to convert to a dense numpy array.

我尝试使用X.toarray()和X.todense()将稀疏矩阵转换为密集 但是当我这样做时,我得到以下错误跟踪。

 99         model.fit(X_train.toarray(), y_train)
    100         preds = model.predict_proba(X_cv)[:, 1]
    101 

C:\Python27\lib\site-packages\scipy\sparse\compressed.pyc in toarray(self)
    548 
    549     def toarray(self):
--> 550         return self.tocoo(copy=False).toarray()
    551 
    552     ##############################################################

C:\Python27\lib\site-packages\scipy\sparse\coo.pyc in toarray(self)
    236 
    237     def toarray(self):
--> 238         B = np.zeros(self.shape, dtype=self.dtype)
    239         M,N = self.shape
    240         coo_todense(M, N, self.nnz, self.row, self.col, self.data, B.ravel())

ValueError: array is too big.

任何人都可以帮我解决这个问题。

谢谢

1 个答案:

答案 0 :(得分:3)

sklearn随机森林对稀疏输入不起作用,并且您的数据集形状很大且太稀疏,无法使密集版本适合内存。

您可能有一些具有大小基数的分类功能(例如自由文本字段或唯一条目ID)。尝试删除这些功能并重新开始。