我是靠谱客的博主 靓丽巨人,最近开发中收集的这篇文章主要介绍AttributeError: module ‘keras.backend‘ has no attribute ‘get_session‘ 问题解决一、问题二、解决方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一、问题

Traceback (most recent call last):
  File "video.py", line 9, in <module>
    ssd = SSD()
  File "/home/pi/Desktop/Mobilenet-SSD-Essay-master/ssd.py", line 37, in __init__
    self.sess = K.get_session()
AttributeError: module 'keras.backend' has no attribute 'get_session' 

原因:TensorFlow和 Keras 的版本太高导致的,我的版本如下:TensorFlow2.3.0、Keras2.4.3

二、解决方法

先定位到这行代码

from keras import backend as K 

改为

from tensorflow.compat.v1.keras import backend as K 

最后

以上就是靓丽巨人为你收集整理的AttributeError: module ‘keras.backend‘ has no attribute ‘get_session‘ 问题解决一、问题二、解决方法的全部内容,希望文章能够帮你解决AttributeError: module ‘keras.backend‘ has no attribute ‘get_session‘ 问题解决一、问题二、解决方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部