tensorflow2.0版本AttributeError: module 'tensorflow' has no attribute 'get_default_graph'

参考:https://blog.csdn.net/public669/article/details/99686151
运行:

from keras import models
from keras import layers

出现错误:
AttributeError: module 'tensorflow' has no attribute 'get_default_graph'
tensorflow模块没有get_default_graph属性

错误原因
这是由于Keras API(https://keras.io/)有多个实现,包括原始和参考实现(https://github.com/keras-team/keras),还有各种其他实现,包括tf.keras,它是TensorFlow的一部分。
由于TensorFlow 2默认为急切执行,因此Keras需要进行一些更改才能与之兼容

解决方法
方法一:
将参考实现与TensorFlow后端一起使用。但是,此实现尚未更新以支持TensorFlow 2(截至2019年6月)。

方法二:
使用TensorFlow的实现,tf.keras。这个适用于TF 2。
例如你需要使用tf.keras,必须确保使用正确的导入:
from tensorflow import keras
而不是直接使用:import keras

同样,在要使用keras下的其他模块时:
from tensorflow.keras import layers
而不是使用 from keras import layers

你可能感兴趣的:(tensorflow2.0版本AttributeError: module 'tensorflow' has no attribute 'get_default_graph')