TypeError: init() got an unexpected keyword argument 'act'
时间: 2023-10-06 18:07:38 浏览: 120
This error indicates that the `init()` function received an unexpected keyword argument `act`. This might be caused by passing an argument that the function does not recognize or support.
To fix this error, check the function definition and make sure that the argument `act` is supported. If it is not, remove the argument from the function call. If it is supported, check that the argument is spelled correctly and passed in the correct format.
相关问题
TypeError: entry_points() got an unexpected keyword argument 'group' TypeError: entry_points() got an unexpected keyword argument 'group' TypeError: entry_points() got an unexpected keyword argument 'group' TypeError: entry_points() got an unexpected keyword argument 'group' TypeError: entry_points() got an unexpected keyword argument 'group' 打开tensorboard文件时出错TypeError: entry_points() got an unexpected keyword argument 'group'
这个错误通常是由于不兼容的TensorBoard版本引起的。为了解决这个问题,您可以尝试以下方法:
1. 确保您已经安装了最新版本的TensorBoard。在命令行中运行以下命令来升级TensorBoard:
```
pip install --upgrade tensorboard
```
2. 如果您使用的是conda环境,请确认您的conda环境是否正确配置并且没有冲突。可以尝试重新创建一个干净的conda环境,并在其中安装TensorBoard。
3. 如果上述方法都无效,您可以尝试使用不同版本的TensorBoard。在命令行中运行以下命令来安装特定版本的TensorBoard:
```
pip install tensorboard==<version>
```
其中,`<version>`是您想要安装的TensorBoard版本号。
如果问题仍然存在,请提供更多关于您的环境和错误堆栈信息的细节,以便我们更好地帮助您解决问题。
TypeError: got an unexpected keyword argument 'logits'
这个 TypeError 错误通常是因为您尝试在不支持 logits 参数的函数中使用 logits 参数引起的。logits 参数通常用于指定模型的输出。
如果您遇到此错误,请检查您正在使用的函数的文档,确保它们支持 logits 参数。如果不支持,您可以尝试使用其他参数或不使用 logits 参数。
阅读全文