AttributeError:module ‘keras.engine.topology‘ has no attribute ‘load_weights_from_hdf5_group_by_name

简介: module ‘keras.engine.topology‘ has no attribute

在 Windows 下运行 tensorflow-keras 版的 mask-rcnn 时遇到如下所示错误:


我本地的环境:Win10 + 64位 + Anaconda3 + Python3.6


错误发生在运行 Mask-RCNN-master\samples\ 中的 demo.ipynb 文件的如下行:

image.png


解决方案一:


网上资料说造成这个错误的原因是 keras 版本不对,在 mask-rcnn 仓库文件中的 requirement.txt 中提到要求安装的keras>=2.0.8,如下所示:



而 load_weights_from_hdf5_group_by_name 只在 keras2.0.8 的版本中出现,不会出现在最新的 keras 版本中出现。我查看了下当前安装的 keras 版本,是2.2.0,按照建议,将其更改到2.0.8,操作如下:


image.png


先查看版本,然后用 pip uninstall keras 将其卸载,再用 pip install keras==2.0.8 安装指定版本。重新安装后再执行 demo.ipynb 那行代码,然后立马尝试运行 Mask_RCNN-master\samples\ 中的 demo.ipynb 文件,关闭 jupyter notebook 环境再重新进去,可以正常运行不报错了。


解决方案二:


这个问题在 Mask-R-CNN 的 issue 中有提到,由 farzadzare 提出:


image.png


分析的大致原因也是 keras 的版本问题,采取的解决方案就是用 saving来取代代码中的 topology,具体如下:


image.png


推荐阅读:


https://blog.csdn.net/c20081052/article/details/80745969

https://blog.csdn.net/u014513323/article/details/80659352

https://github.com/matterport/Mask_RCNN/issues/694


目录
相关文章
|
4月前
|
TensorFlow 算法框架/工具
【Tensorflow】解决A `Concatenate` layer should be called on a list of at least 2 inputs
在TensorFlow 2.0中,使用Concatenate函数时出现错误,可以通过替换为tf.concat 来解决。
48 4
|
Docker 容器
求助: 运行模型时报错module 'megatron_util.mpu' has no attribute 'get_model_parallel_rank'
运行ZhipuAI/Multilingual-GLM-Summarization-zh的官方代码范例时,报错AttributeError: MGLMTextSummarizationPipeline: module 'megatron_util.mpu' has no attribute 'get_model_parallel_rank' 环境是基于ModelScope官方docker镜像,尝试了各个版本结果都是一样的。
423 5
|
7月前
|
机器学习/深度学习 人工智能
【CatBoost报错解决】CatBoostError: Bad value for num feature[non default doc idx=0,feature idx=19]=
【CatBoost报错解决】CatBoostError: Bad value for num feature[non default doc idx=0,feature idx=19]=
AttributeError: module ‘torch.utils‘ has no attribute ‘data‘
属性错误:模块的'torch.utils'没有属性'data'
109 0
|
TensorFlow API 算法框架/工具
解决AttributeError: module ‘keras.utils‘ has no attribute ‘plot_model‘
解决AttributeError: module ‘keras.utils‘ has no attribute ‘plot_model‘
346 0
解决AttributeError: module ‘keras.utils‘ has no attribute ‘plot_model‘
|
PyTorch 算法框架/工具
问题解决:AttributeError: 'module' object has no attribute '_rebuild_tensor_v2'
问题解决:AttributeError: 'module' object has no attribute '_rebuild_tensor_v2'
283 0
|
TensorFlow 算法框架/工具
成功解决AttributeError: module tensorflow.sets has no attribute intersection
成功解决AttributeError: module tensorflow.sets has no attribute intersection
成功解决AttributeError: module tensorflow.sets has no attribute intersection
|
TensorFlow 算法框架/工具
TF版本升级问题:成功解决AttributeError: module tensorflow has no attribute mul
TF版本升级问题:成功解决AttributeError: module tensorflow has no attribute mul
TF版本升级问题:成功解决AttributeError: module tensorflow has no attribute mul