当前位置:   article > 正文

深度学习参数设置(基于argparse)_深度学习参数 resume

深度学习参数 resume

定义参数

  1. #更多使用方法
  2. #https://docs.python.org/zh-cn/3/library/argparse.html#argumentparser-objects
  3. import argparse
  4. parser = argparse.ArgumentParser()
  5. parser.add_argument('--config', type=str, default='configs/edges2shoes_folder.yaml', help='Path to the config file.')
  6. parser.add_argument('--resume', action="store_true",help='resume train') #不触发为假,触发为真
  7. parser.add_argument('--action',choices=['train','test']) #只能输入choices中的值否则报错
  8. args = parser.parse_args()
  9. print(args.config)
  10. if args.resume :
  11. print('yes')
  12. else:
  13. print('no')
  14. #执行
  15. #(pythonProject) D:\Desktop\MUNIT-master>python Mytest.py --action test
  16. #configs/edges2shoes_folder.yaml
  17. #no

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/687589
推荐阅读
相关标签
  

闽ICP备14008679号