Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleGAN
提交
ad631f41
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看板
未验证
提交
ad631f41
编写于
12月 08, 2021
作者:
L
lzzyzlbb
提交者:
GitHub
12月 08, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix tipc (#517)
* fix tipc * add cyclegan eval
上级
79a6419f
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
24 addition
and
9 deletion
+24
-9
configs/cyclegan_horse2zebra.yaml
configs/cyclegan_horse2zebra.yaml
+8
-3
ppgan/models/cycle_gan_model.py
ppgan/models/cycle_gan_model.py
+10
-0
test_tipc/configs/msvsr/train_infer_python.txt
test_tipc/configs/msvsr/train_infer_python.txt
+4
-4
test_tipc/results/python_msvsr_results_fp32.txt
test_tipc/results/python_msvsr_results_fp32.txt
+2
-2
未找到文件。
configs/cyclegan_horse2zebra.yaml
浏览文件 @
ad631f41
...
...
@@ -120,6 +120,11 @@ log_config:
snapshot_config
:
interval
:
5
export_model
:
-
{
name
:
'
netG_A'
,
inputs_num
:
1
}
-
{
name
:
'
netG_B'
,
inputs_num
:
1
}
validate
:
interval
:
30000
save_img
:
false
metrics
:
fid
:
# metric name, can be arbitrary
name
:
FID
batch_size
:
8
ppgan/models/cycle_gan_model.py
浏览文件 @
ad631f41
...
...
@@ -242,3 +242,13 @@ class CycleGANModel(BaseModel):
self
.
backward_D_B
()
# update D_A and D_B's weights
optimizers
[
'optimD'
].
step
()
def
test_iter
(
self
,
metrics
=
None
):
self
.
nets
[
'netG_A'
].
eval
()
self
.
forward
()
with
paddle
.
no_grad
():
if
metrics
is
not
None
:
for
metric
in
metrics
.
values
():
metric
.
update
(
self
.
fake_B
,
self
.
real_B
)
self
.
nets
[
'netG_A'
].
train
()
test_tipc/configs/msvsr/train_infer_python.txt
浏览文件 @
ad631f41
...
...
@@ -13,7 +13,7 @@ train_infer_img_dir:./data/msvsr_reds/test
null:null
##
trainer:norm_train
norm_train:tools/main.py -c configs/msvsr_reds.yaml --seed 123 -o dataset.train.dataset.num_clips=2 dataset.train.num_workers=0 log_config.interval=1 snapshot_config.interval=5
norm_train:tools/main.py -c configs/msvsr_reds.yaml --seed 123 -o dataset.train.dataset.num_clips=2 dataset.train.num_workers=0 log_config.interval=1 snapshot_config.interval=5
dataset.train.dataset.number_frames=2
pact_train:null
fpgm_train:null
distill_train:null
...
...
@@ -27,7 +27,7 @@ null:null
===========================infer_params===========================
--output_dir:./output/
load:null
norm_export:tools/export_model.py -c configs/msvsr_reds.yaml --inputs_size="1,
4
,3,180,320" --load
norm_export:tools/export_model.py -c configs/msvsr_reds.yaml --inputs_size="1,
2
,3,180,320" --load
quant_export:null
fpgm_export:null
distill_export:null
...
...
@@ -37,7 +37,7 @@ inference_dir:multistagevsrmodel_generator
train_model:./inference/msvsr/multistagevsrmodel_generator
infer_export:null
infer_quant:False
inference:tools/inference.py --model_type msvsr -c configs/msvsr_reds.yaml --seed 123 -o dataset.test.num_clips=2 dataset.test.number_frames=
4
--output_path test_tipc/output/
inference:tools/inference.py --model_type msvsr -c configs/msvsr_reds.yaml --seed 123 -o dataset.test.num_clips=2 dataset.test.number_frames=
2
--output_path test_tipc/output/
--device:gpu
null:null
null:null
...
...
@@ -48,4 +48,4 @@ null:null
null:null
null:null
--benchmark:True
null:null
\ No newline at end of file
null:null
test_tipc/results/python_msvsr_results_fp32.txt
浏览文件 @
ad631f41
Metric psnr: 27.3670
Metric ssim: 0.8021
\ No newline at end of file
Metric psnr: 24.3250
Metric ssim: 0.6497
\ No newline at end of file
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录