ValueError:Tensor("dense_1/Softmax:0", shape=(?, 3), dtype=float32) is not an element of this graph


今日、インタフェースを書くときに、次のような古典的な古い問題が再び発生しました.
ValueError: Tensor Tensor("dense_1/Softmax:0", shape=(?, 3), dtype=float32) is not an element of this graph.

ここでは主に具体的な解決策を記録したいと思っています.その後、再び遭遇しないようにするには、資料を調べる必要があります.ここでは、次の2つの措置を提供します.
1、        ,  session  ,        
keras.backend.clear_session()
model=loadModel(modelDir=modelDir)


2、    graph
global graph
import tensorflow as tf
graph = tf.get_default_graph()
with graph.as_default():
        prediction=model.predict(image)



記録して、必要な人を助けてほしい.