2017-03-04 22 views

答えて

1

私の提案は、セッションが実行中のグラフを知っていることを確認することです。あなたが試すことができ 代は以下のとおりです。

  1. は、最初のグラフを構築し、セッションをグラフに渡します。

    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(...)