问题描述
在运行ACmix-ResNet模型时出现问题
Traceback (most recent call last):
File "E:/Code/PyCharm/Paddle/main.py", line 504, in <module>
main()
File "E:/Code/PyCharm/Paddle/main.py", line 116, in main
main_worker(args.gpu, ngpus_per_node, args)
File "E:/Code/PyCharm/Paddle/main.py", line 260, in main_worker
'arch': args.arch,
AttributeError: 'Namespace' object has no attribute 'arch'
原因分析:
很简单的一个错误,没有添加参数文章来源:https://www.toymoban.com/news/detail-714900.html
解决方案:
使用parser添加相应参数即可文章来源地址https://www.toymoban.com/news/detail-714900.html
parser.add_argument('--arch', default=1, type=float, metavar='M',
help='arch')
到了这里,关于解决AttributeError: ‘Namespace‘ object has no attribute ‘arch‘的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!