Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
62e824db
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
62e824db
编写于
11月 27, 2019
作者:
H
hysunflower
提交者:
Jinhua Liang
11月 27, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add_for_cyclegan_models (#3997)
上级
c8545d66
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
1 deletion
+17
-1
PaddleCV/PaddleGAN/cycle_gan/train.py
PaddleCV/PaddleGAN/cycle_gan/train.py
+17
-1
未找到文件。
PaddleCV/PaddleGAN/cycle_gan/train.py
浏览文件 @
62e824db
...
...
@@ -69,6 +69,11 @@ add_arg('save_checkpoints', bool, True, "Whether to save checkpoints.")
add_arg
(
'run_test'
,
bool
,
True
,
"Whether to run test."
)
add_arg
(
'use_gpu'
,
bool
,
True
,
"Whether to use GPU to train."
)
add_arg
(
'profile'
,
bool
,
False
,
"Whether to profile."
)
# NOTE: args for profiler, used for benchmark
add_arg
(
'profiler_path'
,
str
,
'./profiler_cyclegan'
,
"the path of profiler output files. used for benchmark"
)
add_arg
(
'max_iter'
,
int
,
0
,
"the max batch nums to train. used for benchmark"
)
add_arg
(
'run_ce'
,
bool
,
False
,
"Whether to run for model ce."
)
# yapf: enable
...
...
@@ -214,9 +219,14 @@ def train(args):
loss_name
=
d_A_trainer
.
d_loss_A
.
name
,
build_strategy
=
build_strategy
,
exec_strategy
=
exec_strategy
)
total_batch_num
=
0
# this is for benchmark
for
epoch
in
range
(
args
.
epoch
):
batch_id
=
0
for
i
in
range
(
max_images_num
):
if
args
.
max_iter
and
total_batch_num
==
args
.
max_iter
:
# this for benchmark
return
data_A
=
next
(
A_reader
)
data_B
=
next
(
B_reader
)
tensor_A
=
fluid
.
LoDTensor
()
...
...
@@ -265,6 +275,12 @@ def train(args):
losses
[
1
].
append
(
d_A_loss
[
0
])
sys
.
stdout
.
flush
()
batch_id
+=
1
total_batch_num
=
total_batch_num
+
1
# this is for benchmark
# profiler tools for benchmark
if
args
.
profile
and
epoch
==
0
and
batch_id
==
10
:
profiler
.
reset_profiler
()
elif
args
.
profile
and
epoch
==
0
and
batch_id
==
15
:
return
if
args
.
run_test
and
not
args
.
run_ce
:
test
(
epoch
)
...
...
@@ -281,7 +297,7 @@ if __name__ == "__main__":
print_arguments
(
args
)
if
args
.
profile
:
if
args
.
use_gpu
:
with
profiler
.
cuda_profiler
(
"cuda_profiler.txt"
,
'csv'
)
as
nv
prof
:
with
profiler
.
profiler
(
'All'
,
'total'
,
args
.
profiler_path
)
as
prof
:
train
(
args
)
else
:
with
profiler
.
profiler
(
"CPU"
,
sorted_key
=
'total'
)
as
cpuprof
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录