Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleRec
提交
95ea5e58
P
PaddleRec
项目概览
PaddlePaddle
/
PaddleRec
通知
68
Star
12
Fork
5
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
27
列表
看板
标记
里程碑
合并请求
10
Wiki
1
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleRec
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
27
Issue
27
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
1
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
95ea5e58
编写于
4月 16, 2020
作者:
T
tangwei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add userdine engine
上级
8a2a06e4
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
56 addition
and
31 deletion
+56
-31
fleetrec/run.py
fleetrec/run.py
+56
-31
未找到文件。
fleetrec/run.py
浏览文件 @
95ea5e58
import
argparse
import
os
import
sys
import
yaml
from
paddle.fluid.incubate.fleet.parameter_server
import
version
from
fleetrec.core.factory
import
TrainerFactory
from
fleetrec.core.utils
import
envs
...
...
@@ -25,20 +29,42 @@ def local_cluster_engine(cluster_envs, model_yaml):
launch
.
run
()
def
local_mpi_engine
(
cluster_envs
,
model_yaml
):
def
local_mpi_engine
(
model_yaml
):
print
(
"use 1X1 MPI ClusterTraining at localhost to run model: {}"
.
format
(
args
.
model
))
cluster_envs
=
{}
cluster_envs
[
"server_num"
]
=
1
cluster_envs
[
"worker_num"
]
=
1
cluster_envs
[
"start_port"
]
=
36001
cluster_envs
[
"log_dir"
]
=
"logs"
cluster_envs
[
"train.trainer"
]
=
"CtrTraining"
print
(
envs
.
pretty_print_envs
(
cluster_envs
,
(
"Local MPI Cluster Envs"
,
"Value"
)))
envs
.
set_runtime_envions
(
cluster_envs
)
print
(
"coming soon"
)
def
yaml_engine
(
engine_yaml
,
model_yaml
):
print
(
"coming soon"
)
with
open
(
engine_yaml
,
'r'
)
as
rb
:
_config
=
yaml
.
load
(
rb
.
read
(),
Loader
=
yaml
.
FullLoader
)
assert
_config
is
not
None
envs
.
set_global_envs
(
_config
)
train_location
=
envs
.
get_global_env
(
"engine.file"
)
train_dirname
=
os
.
path
.
dirname
(
train_location
)
base_name
=
os
.
path
.
splitext
(
os
.
path
.
basename
(
train_location
))[
0
]
sys
.
path
.
append
(
train_dirname
)
trainer_class
=
envs
.
lazy_instance
(
base_name
,
"UserDefineTrainer"
)
trainer
=
trainer_class
(
model_yaml
)
trainer
.
run
()
if
__name__
==
"__main__"
:
parser
=
argparse
.
ArgumentParser
(
description
=
'fleet-rec run'
)
parser
.
add_argument
(
"--model"
,
type
=
str
)
parser
.
add_argument
(
"--engine"
,
type
=
str
)
parser
.
add_argument
(
"--engine_extras"
,
type
=
str
)
args
=
parser
.
parse_args
()
...
...
@@ -46,14 +72,15 @@ if __name__ == "__main__":
raise
ValueError
(
"argument model: {} error, must specify a existed yaml file"
.
format
(
args
.
model
))
if
args
.
engine
.
upper
()
==
"SINGLE"
:
if
version
.
is_transpiler
():
print
(
"use SingleTraining to run model: {}"
.
format
(
args
.
model
))
single_envs
=
{}
single_envs
[
"train.trainer"
]
=
"SingleTraining"
single_envs
=
{
"train.trainer"
:
"SingleTraining"
}
single_engine
(
single_envs
,
args
.
model
)
else
:
local_mpi_engine
(
args
.
model
)
elif
args
.
engine
.
upper
()
==
"LOCAL_CLUSTER"
:
print
(
"use 1X1 ClusterTraining at localhost to run model: {}"
.
format
(
args
.
model
))
if
version
.
is_transpiler
():
cluster_envs
=
{}
cluster_envs
[
"server_num"
]
=
1
cluster_envs
[
"worker_num"
]
=
1
...
...
@@ -63,18 +90,16 @@ if __name__ == "__main__":
cluster_envs
[
"train.strategy.mode"
]
=
"async"
local_cluster_engine
(
cluster_envs
,
args
.
model
)
elif
args
.
engine
.
upper
()
==
"LOCAL_MPI"
:
print
(
"use 1X1 MPI ClusterTraining at localhost to run model: {}"
.
format
(
args
.
model
))
cluster_envs
=
{}
cluster_envs
[
"server_num"
]
=
1
cluster_envs
[
"worker_num"
]
=
1
cluster_envs
[
"start_port"
]
=
36001
cluster_envs
[
"log_dir"
]
=
"logs"
cluster_envs
[
"train.trainer"
]
=
"CtrTraining"
local_mpi_engine
(
cluster_envs
,
args
.
model
)
else
:
if
not
os
.
path
.
exists
(
args
.
engine
)
or
not
os
.
path
.
isfile
(
args
.
engine
):
raise
ValueError
(
"argument engine: {} error, must specify a existed yaml file"
.
format
(
args
.
engine
))
yaml_engine
(
args
.
engine
,
args
.
model
)
local_mpi_engine
(
args
.
model
)
elif
args
.
engine
.
upper
()
==
"CLUSTER"
:
print
(
"launch ClusterTraining with cluster to run model: {}"
.
format
(
args
.
model
))
run
(
args
.
model
)
elif
args
.
engine
.
upper
()
==
"USER_DEFINE"
:
engine_file
=
args
.
engine_extras
if
not
os
.
path
.
exists
(
engine_file
)
or
not
os
.
path
.
isfile
(
engine_file
):
raise
ValueError
(
"argument engine: user_define error, must specify a existed yaml file"
.
format
(
args
.
engine_file
))
yaml_engine
(
engine_file
,
args
.
model
)
else
:
raise
ValueError
(
"engine only support SINGLE/LOCAL_CLUSTER/CLUSTER/USER_DEFINE"
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录