当前位置:   article > 正文

argparse.ArgumentParser args AttributeError: ‘Namespace‘ object has no attribute ‘xxx‘_attributeerror: 'namespace' object has no attribut

attributeerror: 'namespace' object has no attribute 'cache

已经添加了命令参数,但还是报这个错误。

报错解决

原因可能是参数添加顺序不对。
正确的顺序:

# 先创建parser
parser = argparse.ArgumentParser(description='xxx')
# 再添加参数
parser.add_argument('--model', default=</
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/558534
推荐阅读