AttributeError: 'Namespace' object has no attribute 'distributed'
时间: 2023-11-09 09:08:16 浏览: 232
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为在使用 argparse 解析命令行参数时,没有正确设置 distributed 参数。可以检查一下代码中是否有类似以下的语句:
```python
parser.add_argument('--distributed', action='store_true')
```
如果有,那么在运行程序时需要加上 `--distributed` 参数。如果不需要使用分布式训练,可以将该参数从代码中删除。
阅读全文