MemoryError: Unable to allocate 469. MiB for an array with shape (20000, 32, 32, 3) and data type fl

错误显示:
MemoryError: Unable to allocate 469. MiB for an array with shape (20000, 32, 32, 3) and data type float64
MemoryError: Unable to allocate 469. MiB for an array with shape (20000, 32, 32, 3) and data type fl_第1张图片

错误原因:
内存错误:无法分配469。用于具有形状(20000、32、32、3)和数据类型float64的数组的MiB。

触发了系统的过量处理模式(overcommit handing)。这个矩阵似乎要占用的空间太大,所以系统就提前禁止创建了。
解决办法:
关闭其他无关的running程序,然后程序就运行了。

参考网上的解决问题如下,(但是其实没有看懂,到底如何操作)
cat /proc/sys/vm/overcommit_memory
echo 1 > /proc/sys/vm/overcommit_memory

参开文章:
[Ubuntu] [Python] MemoryError: Unable to allocate array with shape (x, x) and data type float64

python–MemoryError: Unable to allocate array with shape

你可能感兴趣的:(tensorflow2.0学习,tensorflow)