TensorFlow Allocation of 1511424000 exceeds 10% of system memory

在利用TensorFlow社区的神经网络新手教程的一个例程时,遇到了一个因为内存问题而导致电脑卡主没反应的问题,本次神经网络的模型为一隐层的神经网络模型(2,3,1结构),在训练过程中,出现了内存的问题。
print(‘test accuracy %.3f’%accuracy.eval(feed_dict={
x: mnist.test.images, y_label: mnist.test.labels, keep_prop: 1.0})),报错Allocation of 31360000 exceeds 10% of system memory.这是因为电脑配置(i5-4210U,4G内存)过低的原因吗?还是因为导入数据是出问题了?

你可能感兴趣的:(pycharm)