AttributeError: module 'keras.layers' has no attribute 'experimental'
时间: 2023-06-21 21:05:55 浏览: 191
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为你使用了旧版本的Keras库。在Keras 2.4.0及以上版本中,“experimental”模块已被移除。你可以尝试更新Keras库到最新版本,或者将代码中使用“keras.layers.experimental”的部分改为“keras.layers”。
如果你使用pip安装Keras,则可以使用以下命令升级:
```
pip install --upgrade keras
```
如果你使用Anaconda进行安装,则可以使用以下命令升级:
```
conda update keras
```
阅读全文