【已解决】AttributeError: module ‘tensorflow’ has no attribute ‘get_default_graph’
1.简洁版
# 自己的代码:1.修改
from tensorflow import keras # 原来的代码为 import keras
# 进入tensorflow_backend.py文件: 2.修改; 3.添加
import tensorflow.compat.v1 as tf # 原代码为: import tensorflow as tf
tf.compat.v1.disable_eager_execution() # 这就添加至上句代码之后