AttributeError: module 'tensorflow' has no attribute 'uint8'
时间: 2023-06-21 08:06:04 浏览: 219
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是由于 TensorFlow 版本问题引起的。在 TensorFlow 2.4.0 版本及以上,`uint8`已经被移除了,改为使用`tf.uint8`。
你可以尝试在代码中将所有使用`uint8`的地方都替换为`tf.uint8`,或者升级 TensorFlow 到最新版本来解决这个问题。你可以使用以下命令来升级 TensorFlow:
```
pip install --upgrade tensorflow
```
如果你想要保持使用旧版 TensorFlow,则可以降级到 TensorFlow 2.3.0 或更低版本。你可以使用以下命令来降级 TensorFlow:
```
pip install tensorflow==2.3.0
```
阅读全文