diff --git a/official/cv/alexnet/src/model_utils/config.py b/official/cv/alexnet/src/model_utils/config.py
index f8a058b4490caaeffafa57667e4a00e79b05fc0e..e3a8262e7473c0c6da7af1d931d986d296f852c9 100644
--- a/official/cv/alexnet/src/model_utils/config.py
+++ b/official/cv/alexnet/src/model_utils/config.py
@@ -119,7 +119,6 @@ def get_config():
                         help="Config file path")
     path_args, _ = parser.parse_known_args()
     default, helper, choices = parse_yaml(path_args.config_path)
-    pprint(default)
     args = parse_cli_to_yaml(parser=parser, cfg=default, helper=helper, choices=choices, cfg_path=path_args.config_path)
     final_config = merge(args, default)
     pprint(final_config)
diff --git a/official/cv/crnn/src/model_utils/config.py b/official/cv/crnn/src/model_utils/config.py
index f5ddba538ee9fc02f54ab77d9987164c95f5a8e7..aba6248b8ebb01e8bf46750bc92a4626d40e29a4 100644
--- a/official/cv/crnn/src/model_utils/config.py
+++ b/official/cv/crnn/src/model_utils/config.py
@@ -126,7 +126,6 @@ def get_config():
     final_config = merge(args, default)
     pprint(final_config)
     print("Please check the above information for the configurations", flush=True)
-    pprint(final_config)
     return Config(final_config)
 
 config = get_config()
diff --git a/official/cv/openpose/src/model_utils/config.py b/official/cv/openpose/src/model_utils/config.py
index 3236891a98746382764984a30fdd15724af180ff..37c449d4a494e258f2922cb6d835b74b0dec6f81 100644
--- a/official/cv/openpose/src/model_utils/config.py
+++ b/official/cv/openpose/src/model_utils/config.py
@@ -207,13 +207,12 @@ def get_config():
     default, helper, choices = parse_yaml(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)
-    pprint(final_config)
-    print("Please check the above information for the configurations", flush=True)
 
     configs = Config(final_config)
     configs.limbs_point = limbs_point
     configs.joint_indices = joint_indices
     pprint(configs)
+    pprint("Please check the above information for the configurations")
 
     return configs
 
diff --git a/utils/hccl_tools/README.md b/utils/hccl_tools/README.md
index 441c9c68d1167c41ddb40377c8d98063950a847e..88e6302b023077f90746207be6c64a671caa8965 100644
--- a/utils/hccl_tools/README.md
+++ b/utils/hccl_tools/README.md
@@ -48,6 +48,6 @@ hccl_[server_count]s_[rank_size]p.json
 
 Please note that, the server order in the output config file comes from the order of input file list.
 
-For example, running `python merge_hccl.py hccl_1.json hccl_2.json`. The 8 devices in hccl_1.json will be rank 0~7, and the 8 devices in hccl_2.json will be rank 8~15.
+For example, running `python merge_hccl.py hccl_1.json hccl_2.json`. The 8 devices in hccl_1.json will be rank `0~7`, and the 8 devices in hccl_2.json will be rank `8~15`.
 
 While running with wildcard, the exact order is not determined, which is decided by the system. Usually this will result in dictionary order just like `ls` command, but we still suggest you check the result carefully if the order does matter in your situation.