Skip to content
Snippets Groups Projects
Commit ada9f9aa authored by zhouneng's avatar zhouneng
Browse files

[transformer]replace print with pprint, which cause eval accuracy 0

parent 4bd3e376
Branches
Tags
No related merge requests found
...@@ -122,7 +122,7 @@ def get_config(): ...@@ -122,7 +122,7 @@ def get_config():
args = parse_cli_to_yaml(parser=parser, cfg=default, helper=helper, choices=choices, cfg_path=path_args.config_path) args = parse_cli_to_yaml(parser=parser, cfg=default, helper=helper, choices=choices, cfg_path=path_args.config_path)
final_config = merge(args, default) final_config = merge(args, default)
pprint(final_config) pprint(final_config)
print("Please check the above information for the configurations", flush=True) pprint("Please check the above information for the configurations")
return Config(final_config) return Config(final_config)
config = get_config() config = get_config()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment