AttributeError: module 'tensorboard.compat.proto.types_pb2' has no attribute 'DT_boolREF'
时间: 2023-06-21 22:07:06 浏览: 148
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于 TensorBoard 版本与 TensorFlow 版本不匹配导致的。可以尝试升级或降级相应的库来解决问题。
如果你正在使用 TensorFlow 2.x 版本,则可以尝试升级 TensorBoard:
```
pip install --upgrade tensorboard
```
如果你需要使用较早版本的 TensorBoard,则可以降级 TensorFlow:
```
pip install tensorflow==1.15
```
另外,还可以尝试清除缓存并重新安装相应的库:
```
pip cache purge
pip uninstall tensorflow
pip uninstall tensorboard
pip install tensorflow
pip install tensorboard
```
希望这能帮到你!
阅读全文