parser.add_argument(‘--continue_train‘, action=‘store_true‘)
【摘要】
参考链接
parser.add_argument('--continue_train', action='store_true', default=false)
1
例如:
python train...
parser.add_argument('--continue_train', action='store_true', default=false)
- 1
例如:
python train.py
- 1
修改为:
python --continue_train train.py
- 1
则 --continue_train 参数就会被 设置 为 True ,此次训练就会加载之前训练过的模型进行参数初始化,接着进行训练。
也就是说,action=‘store_true’,只要运行时该变量有传参就将该变量设为True。
文章来源: positive.blog.csdn.net,作者:墨理学AI,版权归原作者所有,如需转载,请联系作者。
原文链接:positive.blog.csdn.net/article/details/107268680
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)