ModuleNotFoundError: No module named ‘keras_applications.resnet_v2‘解决方式

报错如下:
在这里插入图片描述
出错原因:keras相关数据包不匹配

解决方式:

pip uninstall Keras
pip install Keras==2.3.1

pip uninstall Keras-Applications
pip install Keras-Applications==1.0.8

pip uninstall Keras-Preprocessing
pip install Keras-Preprocessing==1.1.0

END

你可能感兴趣的:(keras,python,数据库)