提交 b716eddc 编写于 作者: L LutaoChu 提交者: wuzewu

"if args.opts is not None:" change to "if args.opts:" (#75)

* fix bug
上级 1cd90f93
...@@ -165,7 +165,7 @@ def main(): ...@@ -165,7 +165,7 @@ def main():
args = parse_args() args = parse_args()
if args.cfg_file is not None: if args.cfg_file is not None:
cfg.update_from_file(args.cfg_file) cfg.update_from_file(args.cfg_file)
if args.opts is not None: if args.opts:
cfg.update_from_list(args.opts) cfg.update_from_list(args.opts)
cfg.check_and_infer() cfg.check_and_infer()
print(pprint.pformat(cfg)) print(pprint.pformat(cfg))
......
...@@ -116,7 +116,7 @@ def main(): ...@@ -116,7 +116,7 @@ def main():
args = parse_args() args = parse_args()
if args.cfg_file is not None: if args.cfg_file is not None:
cfg.update_from_file(args.cfg_file) cfg.update_from_file(args.cfg_file)
if args.opts is not None: if args.opts:
cfg.update_from_list(args.opts) cfg.update_from_list(args.opts)
cfg.check_and_infer() cfg.check_and_infer()
print(pprint.pformat(cfg)) print(pprint.pformat(cfg))
......
...@@ -447,7 +447,7 @@ def train(cfg): ...@@ -447,7 +447,7 @@ def train(cfg):
def main(args): def main(args):
if args.cfg_file is not None: if args.cfg_file is not None:
cfg.update_from_file(args.cfg_file) cfg.update_from_file(args.cfg_file)
if args.opts is not None: if args.opts:
cfg.update_from_list(args.opts) cfg.update_from_list(args.opts)
cfg.check_and_infer() cfg.check_and_infer()
print(pprint.pformat(cfg)) print(pprint.pformat(cfg))
......
...@@ -260,7 +260,7 @@ if __name__ == '__main__': ...@@ -260,7 +260,7 @@ if __name__ == '__main__':
args = parse_args() args = parse_args()
if args.cfg_file is not None: if args.cfg_file is not None:
cfg.update_from_file(args.cfg_file) cfg.update_from_file(args.cfg_file)
if args.opts is not None: if args.opts:
cfg.update_from_list(args.opts) cfg.update_from_list(args.opts)
cfg.check_and_infer() cfg.check_and_infer()
print(pprint.pformat(cfg)) print(pprint.pformat(cfg))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册