用于运行Tensorflow实现的一些错误/警告消息

时间:2016-11-30 03:41:00

标签: tensorflow

运行Tensorflow实现时,我收到以下错误/警告消息,其中不包含导致此问题的python代码行。同时,结果仍然生成。我不确定这些消息表明了什么?

 Exception ignored in: <bound method Session.__del__ of <tensorflow.python.client.session.Session object at 0x2b48ec89f748>>
 Traceback (most recent call last):
 File "/data/tfw/lib/python3.4/site-    packages/tensorflow/python/client/session.py", line 140, in __del__
 File "/data/tfw/lib/python3.4/site-packages/tensorflow/python/client/session.py", line 137, in close
 UnboundLocalError: local variable 'status' referenced before assignment

1 个答案:

答案 0 :(得分:1)

今天我在使用Python 3.5和TensorFlow 0.12在Windows 10 64 Bit上运行一些多层感知器模型时也遇到了这个异常

我已经看到了这个例外的答案

  它由不同的gc序列引起,如果先python收集会话,程序将退出成功,如果python首先收集swig内存(tf_session),程序退出失败。   Here