本文主要是介绍class ProposalLayer(KE.Layer): AttributeError: module ‘keras.engine‘ has no attribute ‘Layer‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
训练mask rcnn的时候出现:AttributeError: module ‘keras.engine’ has no attribute 'Layer’
可能是版本问题!!!
卸载:
pip uninstall keras -y
pip uninstall keras-nightly -y
pip uninstall keras-Preprocessing -y
pip uninstall keras-vis -y
pip uninstall tensorflow -y
pip uninstall h5py -y
安装:
pip install tensorflow==1.13.1
pip install keras==2.0.8
pip install h5py==2.10.0
即可解决!!!
这篇关于class ProposalLayer(KE.Layer): AttributeError: module ‘keras.engine‘ has no attribute ‘Layer‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!