赞
踩
parser.add_argument('--continue_train', action='store_true', default=false)
例如:
python train.py
修改为:
python --continue_train train.py
则 --continue_train 参数就会被 设置 为 True ,此次训练就会加载之前训练过的模型进行参数初始化,接着进行训练。
也就是说,action=‘store_true’,只要运行时该变量有传参就将该变量设为True。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。