AttributeError: module 'tensorflow.python.keras.api._v1.keras' has no attribute 'slim'
时间: 2023-11-20 11:05:17 浏览: 243
tensorflow的model下的slim
这个错误通常是因为您正在使用的TensorFlow版本与您的代码不兼容。在TensorFlow 2.0中,slim API已被删除,因此如果您的代码使用了slim API,就会出现这个错误。解决此问题的方法是将TensorFlow版本降级到1.x版本,并确保安装了正确版本的Keras。您可以使用以下命令安装TensorFlow 1.12.0和Keras 2.2.4:
```shell
pip install keras==2.2.4
pip install tensorflow==1.12
```
如果您已经安装了TensorFlow 2.0,您可以使用以下命令卸载它:
```shell
pip uninstall tensorflow
```
然后再安装TensorFlow 1.12.0和Keras 2.2.4。
阅读全文