AttributeError: module 'tensorflow.python.keras.backend' has no attribute 'get_graph'怎么解决额
时间: 2023-08-24 19:09:11 浏览: 261
module ‘tensorflow’ has no attribute ‘get_default_graph’
这个错误通常是由于使用了较新版本的 TensorFlow 导致的。在较新版本的 TensorFlow 中,`get_graph()`方法已被弃用并删除。解决此错误的方法是使用`tf.compat.v1.get_default_graph()`代替`keras.backend.get_graph()`。请尝试修改代码中的相关部分,然后重新运行程序。
阅读全文