当前位置: 代码迷 >> 综合 >> 报错:module 'tensorflow.python.keras.backend' has no attribute 'get_graph'
  详细解决方案

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

热度:114   发布时间:2023-11-17 08:11:26.0

报错:module ‘tensorflow.python.keras.backend’ has no attribute ‘get_graph’

原因:安装的tensorflow版本和keras版本不匹配。需要将keras降版本,重新安装自己tensorflow对应的版本就OK了。
查看tensorflow和keras对应的版本网址:
https://docs.floydhub.com/guides/environments/

  1. 首先查看自己的tensorflow版本:
import tensorflow as tf
tf.__version__   
  1. 在对应网址,找到相应的keras版本进行更换
    在这里插入图片描述
  相关解决方案