Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleGAN
提交
94adf2c4
P
PaddleGAN
项目概览
PaddlePaddle
/
PaddleGAN
大约 1 年 前同步成功
通知
97
Star
7254
Fork
1210
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleGAN
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
94adf2c4
编写于
5月 12, 2021
作者:
L
LielinJiang
提交者:
GitHub
5月 12, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add option 'find unused paramters' for trainer (#311)
上级
8dc86476
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
9 addition
and
1 deletion
+9
-1
configs/cyclegan_cityscapes.yaml
configs/cyclegan_cityscapes.yaml
+1
-0
configs/cyclegan_horse2zebra.yaml
configs/cyclegan_horse2zebra.yaml
+1
-0
configs/esrgan_x4_div2k.yaml
configs/esrgan_x4_div2k.yaml
+1
-0
configs/makeup.yaml
configs/makeup.yaml
+1
-0
configs/realsr_bicubic_noise_x4_df2k.yaml
configs/realsr_bicubic_noise_x4_df2k.yaml
+1
-0
configs/realsr_kernel_noise_x4_dped.yaml
configs/realsr_kernel_noise_x4_dped.yaml
+1
-0
ppgan/engine/trainer.py
ppgan/engine/trainer.py
+3
-1
未找到文件。
configs/cyclegan_cityscapes.yaml
浏览文件 @
94adf2c4
epochs
:
200
output_dir
:
output_dir
find_unused_parameters
:
True
model
:
name
:
CycleGANModel
...
...
configs/cyclegan_horse2zebra.yaml
浏览文件 @
94adf2c4
epochs
:
200
output_dir
:
output_dir
find_unused_parameters
:
True
model
:
name
:
CycleGANModel
...
...
configs/esrgan_x4_div2k.yaml
浏览文件 @
94adf2c4
total_iters
:
250000
output_dir
:
output_dir
find_unused_parameters
:
True
# tensor range for function tensor2img
min_max
:
(0., 1.)
...
...
configs/makeup.yaml
浏览文件 @
94adf2c4
epochs
:
100
output_dir
:
tmp
checkpoints_dir
:
checkpoints
find_unused_parameters
:
True
model
:
name
:
MakeupModel
...
...
configs/realsr_bicubic_noise_x4_df2k.yaml
浏览文件 @
94adf2c4
total_iters
:
60000
output_dir
:
output_dir
find_unused_parameters
:
True
# tensor range for function tensor2img
min_max
:
(0., 1.)
...
...
configs/realsr_kernel_noise_x4_dped.yaml
浏览文件 @
94adf2c4
total_iters
:
60000
output_dir
:
output_dir
find_unused_parameters
:
True
# tensor range for function tensor2img
min_max
:
(0., 1.)
...
...
ppgan/engine/trainer.py
浏览文件 @
94adf2c4
...
...
@@ -146,8 +146,10 @@ class Trainer:
def
distributed_data_parallel
(
self
):
paddle
.
distributed
.
init_parallel_env
()
find_unused_parameters
=
self
.
cfg
.
get
(
'find_unused_parameters'
,
False
)
for
net_name
,
net
in
self
.
model
.
nets
.
items
():
self
.
model
.
nets
[
net_name
]
=
paddle
.
DataParallel
(
net
)
self
.
model
.
nets
[
net_name
]
=
paddle
.
DataParallel
(
net
,
find_unused_parameters
=
find_unused_parameters
)
def
learning_rate_scheduler_step
(
self
):
if
isinstance
(
self
.
model
.
lr_scheduler
,
dict
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录