提交 b45368e8 编写于 作者: T tangwei

rename upper to lowe

上级 3ac8b7b1
......@@ -45,13 +45,13 @@ if __name__ == "__main__":
if not os.path.exists(args.model) or not os.path.isfile(args.model):
raise ValueError("argument model: {} error, must specify a existed yaml file".format(args.model))
if args.engine == "Single":
if args.engine.upper == "SINGLE":
print("use SingleTraining to run model: {}".format(args.model))
single_envs = {}
single_envs["train.trainer"] = "SingleTraining"
single_engine(single_envs, args.model)
elif args.engine == "LocalCluster":
elif args.engine.upper == "LOCAL_CLUSTER":
print("use 1X1 ClusterTraining at localhost to run model: {}".format(args.model))
cluster_envs = {}
......@@ -63,7 +63,7 @@ if __name__ == "__main__":
cluster_envs["train.strategy.mode"] = "async"
local_cluster_engine(cluster_envs, args.model)
elif args.engine == "LocalMPI":
elif args.engine.upper == "LOCAL_MPI":
print("use 1X1 MPI ClusterTraining at localhost to run model: {}".format(args.model))
cluster_envs = {}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册