0
我一直在嘗試使用 Tensorflow : Memory leak even while closing Session? 上提供的答案來迭代張量流模型。我有與在其中一個註釋中提到的相同的錯誤,即「會話圖是空的,將操作添加到圖之前調用run()「。我無法弄清楚如何解決它。會話圖爲空
我一直在嘗試使用 Tensorflow : Memory leak even while closing Session? 上提供的答案來迭代張量流模型。我有與在其中一個註釋中提到的相同的錯誤,即「會話圖是空的,將操作添加到圖之前調用run()「。我無法弄清楚如何解決它。會話圖爲空
我的建議是確保你的會話知道它在哪個圖上運行。 出頭,你可以嘗試是:
構建圖形第一,並通過在圖形中的會話。
myGraph = tf.Graph()
with myGraph.as_default():
# build your graph here
mySession = tf.Session(graph=myGraph)
mySession.run(...)
# Or
with tf.Session(graph=myGraph) as mySession:
mySession.run(...)
如果你想使用多個with
聲明,以嵌套的方式來使用它。
with tf.Graph().as_default():
# build your graph here
with tf.Session() as mySession:
mySession.run(...)
什麼是你想要運行的代碼? –