ModuleNotFoundError: No module named 'keras_applications'
时间: 2023-06-22 16:17:44 浏览: 144
keras_frcnn:Keras快速rcnn的实现
这个错误通常是由于缺少 Keras 的依赖包导致的。你可以尝试使用以下命令来安装 Keras 和其依赖包:
```
pip install keras tensorflow-gpu pillow h5py
```
如果你已经安装了 Keras,那么可能需要更新它的依赖包。你可以使用以下命令来更新 Keras 和其依赖包:
```
pip install --upgrade keras tensorflow-gpu pillow h5py
```
如果问题仍然存在,那么可能需要检查你的环境变量和路径设置是否正确。
阅读全文