Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleGAN
提交
67d7e415
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看板
未验证
提交
67d7e415
编写于
12月 31, 2021
作者:
W
wangna11BD
提交者:
GitHub
12月 31, 2021
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix mpr and doc (#550)
上级
1b4bcd61
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
5 addition
and
1 deletion
+5
-1
docs/en_US/tutorials/face_enhancement.md
docs/en_US/tutorials/face_enhancement.md
+2
-0
docs/zh_CN/tutorials/face_enhancement.md
docs/zh_CN/tutorials/face_enhancement.md
+2
-0
ppgan/apps/mpr_predictor.py
ppgan/apps/mpr_predictor.py
+1
-1
未找到文件。
docs/en_US/tutorials/face_enhancement.md
浏览文件 @
67d7e415
...
@@ -18,6 +18,8 @@ faceenhancer = FaceEnhancement()
...
@@ -18,6 +18,8 @@ faceenhancer = FaceEnhancement()
img
=
faceenhancer
.
enhance_from_image
(
img
)
img
=
faceenhancer
.
enhance_from_image
(
img
)
```
```
Note: please convert the image to float type, currently does not support int8 type.
### Train (TODO)
### Train (TODO)
In the future, training scripts will be added to facilitate users to train more types of GPEN.
In the future, training scripts will be added to facilitate users to train more types of GPEN.
...
...
docs/zh_CN/tutorials/face_enhancement.md
浏览文件 @
67d7e415
...
@@ -18,6 +18,8 @@ faceenhancer = FaceEnhancement()
...
@@ -18,6 +18,8 @@ faceenhancer = FaceEnhancement()
img
=
faceenhancer
.
enhance_from_image
(
img
)
img
=
faceenhancer
.
enhance_from_image
(
img
)
```
```
注意:请将图片转为float类型输入,目前不支持int8类型
### 训练(TODO)
### 训练(TODO)
未来还将添加训练脚本方便用户训练出更多类型的 GPEN 人脸增强。
未来还将添加训练脚本方便用户训练出更多类型的 GPEN 人脸增强。
...
...
ppgan/apps/mpr_predictor.py
浏览文件 @
67d7e415
...
@@ -110,7 +110,7 @@ class MPRPredictor(BasePredictor):
...
@@ -110,7 +110,7 @@ class MPRPredictor(BasePredictor):
os
.
makedirs
(
self
.
output_path
,
exist_ok
=
True
)
os
.
makedirs
(
self
.
output_path
,
exist_ok
=
True
)
task_path
=
os
.
path
.
join
(
self
.
output_path
,
self
.
task
)
task_path
=
os
.
path
.
join
(
self
.
output_path
,
self
.
task
)
os
.
makedirs
(
task_path
,
exist_ok
=
True
)
os
.
makedirs
(
task_path
,
exist_ok
=
True
)
image_files
=
self
.
get_images
(
self
.
images_path
)
image_files
=
self
.
get_images
(
images_path
)
for
image_file
in
tqdm
(
image_files
):
for
image_file
in
tqdm
(
image_files
):
img
=
self
.
read_image
(
image_file
)
img
=
self
.
read_image
(
image_file
)
image_name
=
os
.
path
.
basename
(
image_file
)
image_name
=
os
.
path
.
basename
(
image_file
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录