tensorflow写mnist数据集识别程序出现错误:terminate called after throwing an instance of 'std::bad_alloc'

在使用tesorflow写CNN进行mnist数据集的识别程序时,在运行的过程中可能会出现terminate called after throwing an instance of 'std::bad_alloc' 错误时,这说明你的电脑内存不足以去存储数据集中的数,因此我们只需要减少mnist数据集的数据读取量就行。

比如你原来读取10000张照片,现在读取1000张。

你可能感兴趣的:(tensorflow写mnist数据集识别程序出现错误:terminate called after throwing an instance of 'std::bad_alloc')