module 'tensorboard.plugins.hparams.api' has no attribute 'HParams'
时间: 2023-09-17 17:14:58 浏览: 185
hudson.plugins.nodejs.tools.NodeJSInstaller 版本最高为17.9.0
这个问题可能是因为你的TensorFlow版本太低导致的。在早期版本的TensorFlow中,tensorboard.plugins.hparams.api模块中的HParams类是不存在的。请尝试升级你的TensorFlow版本到最新的稳定版本,并重新运行你的代码。
如果你已经升级了TensorFlow版本但问题仍然存在,那么可能是因为你在使用旧的tensorboard版本。在这种情况下,你可以尝试更新tensorboard版本或者手动安装最新的hparams api。你可以通过以下命令来安装最新的hparams api:
```
pip install -U tensorboard-plugin-profile
```
这应该可以解决你的问题。
阅读全文