Python 转换为数组时出现内存错误

Posted

技术标签:

【中文标题】Python 转换为数组时出现内存错误【英文标题】:Memory Error at Python while converting to array 【发布时间】:2014-07-15 18:13:37 【问题描述】:

我的代码如下所示:

from sklearn.datasets import load_svmlight_files
import numpy as np

perm1 =np.random.permutation(25000)
perm2 = np.random.permutation(25000)

X_tr, y_tr, X_te, y_te = load_svmlight_files(("dir/file.feat", "dir/file.feat"))

#randomly shuffle data
X_train = X_tr[perm1,:].toarray()[:,0:2000]
y_train = y_tr[perm1]>5 #turn into binary problem

到这里为止,代码都可以正常工作,但是当我尝试将另一个对象转换为数组时,我的程序会返回内存错误。

代码:

X_test = X_te[perm2,:].toarray()[:,0:2000]

错误:

---------------------------------------------------------------------------
MemoryError                               Traceback (most recent call last)
<ipython-input-7-31f5e4f6b00c> in <module>()
----> 1 X_test = X_test.toarray()

C:\Users\Asq\AppData\Local\Enthought\Canopy\User\lib\site-packages\scipy\sparse\compressed.pyc in toarray(self, order, out)
    788     def toarray(self, order=None, out=None):
    789         """See the docstring for `spmatrix.toarray`."""
--> 790         return self.tocoo(copy=False).toarray(order=order, out=out)
    791 
    792     ##############################################################

C:\Users\Asq\AppData\Local\Enthought\Canopy\User\lib\site-packages\scipy\sparse\coo.pyc in toarray(self, order, out)
    237     def toarray(self, order=None, out=None):
    238         """See the docstring for `spmatrix.toarray`."""
--> 239         B = self._process_toarray_args(order, out)
    240         fortran = int(B.flags.f_contiguous)
    241         if not fortran and not B.flags.c_contiguous:

C:\Users\Asq\AppData\Local\Enthought\Canopy\User\lib\site-packages\scipy\sparse\base.pyc in _process_toarray_args(self, order, out)
    697             return out
    698         else:
--> 699             return np.zeros(self.shape, dtype=self.dtype, order=order)
    700 
    701 

MemoryError: 

我是python新手,不知道是否需要手动修复内存错误。

我的代码的其他部分返回相同的错误(例如使用 knn 或 ann 进行训练)。

我该如何解决这个问题?

【问题讨论】:

您可能耗尽了系统的可用内存。购买更多或分配更多(交换/分页)。 我使用 windows 并且交换内存现在扩展到 4gb。我的内存是 8GB。而 python 现在使用了我 2.5 gb 的内存(只是代码,直到这里运行)。 如果您可以通过将这些变量设置为具有相同形状和矩阵类型的随机变量来替换代码中加载 svm 数据的行,这将很有帮助,这样人们就可以尝试通过以下方式重现问题复制和粘贴。如果您无法做到这一点,请至少提供数组的形状。 【参考方案1】:

使用 numpy.asarray() 就地转换,而不是需要新内存的 toarray()。

【讨论】:

你能再解释一下吗?【参考方案2】:

在这种情况下,通常可以避免将稀疏矩阵转换为密集格式。

例如,您可以do the permutation 并使用 CSR 或 CSC 稀疏格式轻松切片。

您还没有发布下面的代码,但我怀疑它也可以用来处理稀疏输入。如果这是真的,那么您的记忆问题将不再是问题。

【讨论】:

您的建议是正确的。只要我真的不需要密集格式。但我需要scale 数据,对于一些机器学习算法,我需要密集格式。但恐怕您的建议是解决内存错误的唯一答案。但是,我将无法使用我想使用的算法。 @Asqan 是否需要扩展取决于数据的性质。稀疏数据通常是直方图,应该是 L2 归一化而不是缩放。 L2 归一化保留了稀疏性。 我知道这是一个老问题,但我的第一反应是寻找一种方法来分配 float64 以外的 dtype。 toarray() 以 float64 格式填充 0.0。有没有办法做到这一点?

以上是关于Python 转换为数组时出现内存错误的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 中追加到列表时出现内存错误

添加 6 条数组消息时出现 Protobuf 内存错误

将小 PySpark DataFrame 写入镶木地板时出现内存错误

将大型 JSON (InputStream) 放入 String 时出现内存不足错误

在 Python 中使用重载加法运算符时出现内存错误

尝试使用 Gridsearchcv 时出现内存错误