Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
a92e2129
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a92e2129
编写于
11月 18, 2019
作者:
H
hysunflower
提交者:
Jinhua Liang
11月 18, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add profiler maxiter for deeplabv3 (#3942)
* add profiler and maxiter for deeplabv3 * fix same params
上级
58b67c6f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
5 addition
and
1 deletion
+5
-1
PaddleCV/deeplabv3+/train.py
PaddleCV/deeplabv3+/train.py
+5
-1
未找到文件。
PaddleCV/deeplabv3+/train.py
浏览文件 @
a92e2129
...
@@ -39,6 +39,7 @@ set_paddle_flags({
...
@@ -39,6 +39,7 @@ set_paddle_flags({
import
paddle
import
paddle
import
paddle.fluid
as
fluid
import
paddle.fluid
as
fluid
from
paddle.fluid
import
profiler
import
numpy
as
np
import
numpy
as
np
import
argparse
import
argparse
from
reader
import
CityscapeDataset
from
reader
import
CityscapeDataset
...
@@ -70,6 +71,8 @@ add_arg('profile', bool, False, "Enable profiler.")
...
@@ -70,6 +71,8 @@ add_arg('profile', bool, False, "Enable profiler.")
add_arg
(
'use_py_reader'
,
bool
,
True
,
"Use py reader."
)
add_arg
(
'use_py_reader'
,
bool
,
True
,
"Use py reader."
)
add_arg
(
'use_multiprocessing'
,
bool
,
False
,
"Use multiprocessing."
)
add_arg
(
'use_multiprocessing'
,
bool
,
False
,
"Use multiprocessing."
)
add_arg
(
"num_workers"
,
int
,
8
,
"The number of python processes used to read and preprocess data."
)
add_arg
(
"num_workers"
,
int
,
8
,
"The number of python processes used to read and preprocess data."
)
# NOTE: args for profiler, used for benchmark
add_arg
(
"profiler_path"
,
str
,
'/tmp/profile_file2'
,
"the profiler output file path. (used for benchmark)"
)
parser
.
add_argument
(
parser
.
add_argument
(
'--enable_ce'
,
'--enable_ce'
,
action
=
'store_true'
,
action
=
'store_true'
,
...
@@ -79,7 +82,7 @@ parser.add_argument(
...
@@ -79,7 +82,7 @@ parser.add_argument(
@
contextlib
.
contextmanager
@
contextlib
.
contextmanager
def
profile_context
(
profile
=
True
):
def
profile_context
(
profile
=
True
):
if
profile
:
if
profile
:
with
profiler
.
profiler
(
'All'
,
'total'
,
'/tmp/profile_file2'
):
with
profiler
.
profiler
(
'All'
,
'total'
,
args
.
profiler_path
):
yield
yield
else
:
else
:
yield
yield
...
@@ -252,6 +255,7 @@ with profile_context(args.profile):
...
@@ -252,6 +255,7 @@ with profile_context(args.profile):
train_loss
=
np
.
mean
(
train_loss
)
train_loss
=
np
.
mean
(
train_loss
)
end_time
=
time
.
time
()
end_time
=
time
.
time
()
total_time
+=
end_time
-
begin_time
total_time
+=
end_time
-
begin_time
if
i
%
100
==
0
:
if
i
%
100
==
0
:
print
(
"Model is saved to"
,
args
.
save_weights_path
)
print
(
"Model is saved to"
,
args
.
save_weights_path
)
save_model
()
save_model
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录