bp神经网络运行报错sum() got an unexpected keyword argument 'keepdims'
时间: 2023-10-05 19:06:04 浏览: 105
这个错误通常是因为您使用的 Numpy 版本太老,不支持 `keepdims` 参数。请尝试更新 Numpy 版本,或者在调用 `sum()` 函数时去掉 `keepdims` 参数。
如果您使用的是较新的 Numpy 版本,可能是因为您的输入数据类型不正确导致的。请确保输入数据类型为 Numpy 数组,并且保证数组的维度正确。
相关问题
sum() got an unexpected keyword argument 'keepdims'
The error message you are seeing indicates that the `sum()` function is not expecting the `keepdims` keyword argument that you have provided.
The `keepdims` argument was added to the `sum()` function in Python 3.2, so if you are using an earlier version of Python, you may see this error. To fix this issue, you can either upgrade your Python version to 3.2 or later, or you can remove the `keepdims` argument from your `sum()` function call.
If you are using Python 3.2 or later and still seeing this error, double-check that you are not misspelling the argument name or using it in an unsupported way.
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版本号。
如果问题仍然存在,请提供更多关于您的环境和错误堆栈信息的细节,以便我们更好地帮助您解决问题。
阅读全文