From b34c0d670375b56ebb7dc51aa37c4607f7345d06 Mon Sep 17 00:00:00 2001 From: ZeyangGao Date: Mon, 13 Sep 2021 16:26:32 +0800 Subject: [PATCH] fix issue I49TIB --- model_zoo/official/cv/resnet/src/model_utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model_zoo/official/cv/resnet/src/model_utils/config.py b/model_zoo/official/cv/resnet/src/model_utils/config.py index 19678722f34..494f5cfeb6f 100644 --- a/model_zoo/official/cv/resnet/src/model_utils/config.py +++ b/model_zoo/official/cv/resnet/src/model_utils/config.py @@ -118,7 +118,7 @@ def get_config(): parser = argparse.ArgumentParser(description="default name", add_help=False) current_dir = os.path.dirname(os.path.abspath(__file__)) parser.add_argument("--config_path", type=str, default=os.path.join(current_dir, \ - "../config/resnet50_cifar10_config.yaml"), help="Config file path") + "../../config/resnet50_cifar10_config.yaml"), help="Config file path") path_args, _ = parser.parse_known_args() default, helper, choices = parse_yaml(path_args.config_path) pprint(default)