gpt4 book ai didi

python-3.x - session 图为空

转载 作者:行者123 更新时间:2023-12-03 00:11:55 24 4
gpt4 key购买 nike

我一直在尝试使用上提供的答案来迭代 tensorflow 模型 Tensorflow : Memory leak even while closing Session?我有与评论之一中提到的相同的错误,即“ session 图是空的。在调用 run() 之前向图中添加操作。”我不知道如何解决它。

最佳答案

我的建议是确保您的 session 知道它正在哪个图表上运行。您可以尝试的方法有:

  1. 首先构建图表并将图表传递给 session 。

    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(...)
  2. 如果要使用多个with语句,请以嵌套方式使用。

    with tf.Graph().as_default():
    # build your graph here
    with tf.Session() as mySession:
    mySession.run(...)

关于python-3.x - session 图为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42593771/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com