Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
s920243400
PaddleDetection
提交
b18151e6
P
PaddleDetection
项目概览
s920243400
/
PaddleDetection
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleDetection
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
b18151e6
编写于
3月 17, 2020
作者:
X
xiegegege
提交者:
GitHub
3月 17, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add ce for PaddleDetection (#343)
上级
2d385d25
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
14 addition
and
1 deletion
+14
-1
tools/train.py
tools/train.py
+14
-1
未找到文件。
tools/train.py
浏览文件 @
b18151e6
...
@@ -19,6 +19,7 @@ from __future__ import print_function
...
@@ -19,6 +19,7 @@ from __future__ import print_function
import
os
import
os
import
time
import
time
import
numpy
as
np
import
numpy
as
np
import
random
import
datetime
import
datetime
from
collections
import
deque
from
collections
import
deque
...
@@ -60,11 +61,14 @@ def main():
...
@@ -60,11 +61,14 @@ def main():
FLAGS
.
dist
=
'PADDLE_TRAINER_ID'
in
env
and
'PADDLE_TRAINERS_NUM'
in
env
FLAGS
.
dist
=
'PADDLE_TRAINER_ID'
in
env
and
'PADDLE_TRAINERS_NUM'
in
env
if
FLAGS
.
dist
:
if
FLAGS
.
dist
:
trainer_id
=
int
(
env
[
'PADDLE_TRAINER_ID'
])
trainer_id
=
int
(
env
[
'PADDLE_TRAINER_ID'
])
import
random
local_seed
=
(
99
+
trainer_id
)
local_seed
=
(
99
+
trainer_id
)
random
.
seed
(
local_seed
)
random
.
seed
(
local_seed
)
np
.
random
.
seed
(
local_seed
)
np
.
random
.
seed
(
local_seed
)
if
FLAGS
.
enable_ce
:
random
.
seed
(
0
)
np
.
random
.
seed
(
0
)
cfg
=
load_config
(
FLAGS
.
config
)
cfg
=
load_config
(
FLAGS
.
config
)
if
'architecture'
in
cfg
:
if
'architecture'
in
cfg
:
main_arch
=
cfg
.
architecture
main_arch
=
cfg
.
architecture
...
@@ -101,6 +105,9 @@ def main():
...
@@ -101,6 +105,9 @@ def main():
# build program
# build program
startup_prog
=
fluid
.
Program
()
startup_prog
=
fluid
.
Program
()
train_prog
=
fluid
.
Program
()
train_prog
=
fluid
.
Program
()
if
FLAGS
.
enable_ce
:
startup_prog
.
random_seed
=
1000
train_prog
.
random_seed
=
1000
with
fluid
.
program_guard
(
train_prog
,
startup_prog
):
with
fluid
.
program_guard
(
train_prog
,
startup_prog
):
with
fluid
.
unique_name
.
guard
():
with
fluid
.
unique_name
.
guard
():
model
=
create
(
main_arch
)
model
=
create
(
main_arch
)
...
@@ -319,5 +326,11 @@ if __name__ == '__main__':
...
@@ -319,5 +326,11 @@ if __name__ == '__main__':
type
=
str
,
type
=
str
,
default
=
"tb_log_dir/scalar"
,
default
=
"tb_log_dir/scalar"
,
help
=
'Tensorboard logging directory for scalar.'
)
help
=
'Tensorboard logging directory for scalar.'
)
parser
.
add_argument
(
"--enable_ce"
,
type
=
bool
,
default
=
False
,
help
=
"If set True, enable continuous evaluation job."
"This flag is only used for internal test."
)
FLAGS
=
parser
.
parse_args
()
FLAGS
=
parser
.
parse_args
()
main
()
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录