keras 学习,AttributeError: module 'tensorflow.python.keras.backend' has no attribute 'get_graph'

code:

import keras

error :

    get_graph = tf_keras_backend.get_graph

AttributeError: module 'tensorflow.python.keras.backend' has no attribute 'get_graph'

explain:

这种错误是因为python tensorflow keras 版本呢不匹配。一个成功的案例是 python3.6, tensorflow 1.12 keras 2.2.4

你可能感兴趣的:(tensorflow)