AttributeError: module 'tensorflow' has no attribute 'get_default_graph'

问题

运行程序:出现如下错误
AttributeError: module 'tensorflow' has no attribute 'get_default_graph'

原因及解决方案

原因:tensorflow与keras版本不匹配
tensorflow-gpu是2.0 而keras是2.2.4
更新keras版本到2.3.1可以解决该问题

pip install keras==2.3.1

你可能感兴趣的:(故障处理,Keras,keras,tensorflow,报错)