module ‘tensorflow‘ has no attribute ‘get_default_graph‘

於小勇發表於2020-12-18

module 'tensorflow' has no attribute 'get_default_graph'

當我使用keras和tensorflow做深度學習的時候,python3.6報了這個錯誤,這個問題源自於keras和TensorFlow的版本過高導致模組不存在或者已經更改不再相容

解決辦法,降級TensorFlow和keras

pip uninstall tensorflow # 解除安裝tf

pip uninstall keras # 解除安裝keras

安裝1.2.0的tf 和 2.0.9的keras

pip install tensorflow==1.2.0

pip install keras==2.0.9

相關文章