Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
6137a6b0
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,发现更多精彩内容 >>
未验证
提交
6137a6b0
编写于
4月 15, 2019
作者:
W
whs
提交者:
GitHub
4月 15, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Refine readme in cycle gan. (#1972)
* 1. Refine readme 2. Fix some issues * Refine README.md.
上级
26128902
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
5 deletion
+5
-5
PaddleCV/gan/cycle_gan/README.md
PaddleCV/gan/cycle_gan/README.md
+4
-3
PaddleCV/gan/cycle_gan/infer.py
PaddleCV/gan/cycle_gan/infer.py
+0
-1
PaddleCV/gan/cycle_gan/train.py
PaddleCV/gan/cycle_gan/train.py
+1
-1
未找到文件。
PaddleCV/gan/cycle_gan/README.md
浏览文件 @
6137a6b0
运行本目录下的程序示例需要使用PaddlePaddle develop最新版本。如果您的PaddlePaddle安装版本低于此要求,请按照
[
安装文档
](
http://www.paddlepaddle.org/docs/develop/documentation/zh/build_and_install/pip_install_cn.html
)
中的说明更新PaddlePaddle安装版本。
...
...
@@ -73,8 +72,8 @@ env CUDA_VISIBLE_DEVICES=0 python train.py
执行以下命令读取多张图片进行预测:
```
env CUDA_VISIBLE_DEVICE=0 python infer.py \
--init_model="
checkpoints/1" --input="./data/input
A/*" \
env CUDA_VISIBLE_DEVICE
S
=0 python infer.py \
--init_model="
output/checkpoints/1" --input="./data/horse2zebra/train
A/*" \
--input_style A --output="./output"
```
...
...
@@ -89,3 +88,5 @@ env CUDA_VISIBLE_DEVICE=0 python infer.py \
<img
src=
"images/B2A.jpg"
width=
"620"
hspace=
'10'
/>
<br/>
<strong>
图 3
</strong>
</p>
>在本文示例中,均可通过修改`CUDA_VISIBLE_DEVICES`改变使用的显卡号。
PaddleCV/gan/cycle_gan/infer.py
浏览文件 @
6137a6b0
...
...
@@ -44,7 +44,6 @@ def infer(args):
if
not
os
.
path
.
exists
(
args
.
output
):
os
.
makedirs
(
args
.
output
)
for
file
in
glob
.
glob
(
args
.
input
):
print
"read %s"
%
file
image_name
=
os
.
path
.
basename
(
file
)
image
=
Image
.
open
(
file
)
image
=
image
.
resize
((
256
,
256
))
...
...
PaddleCV/gan/cycle_gan/train.py
浏览文件 @
6137a6b0
...
...
@@ -22,7 +22,7 @@ add_arg = functools.partial(add_arguments, argparser=parser)
# yapf: disable
add_arg
(
'batch_size'
,
int
,
1
,
"Minibatch size."
)
add_arg
(
'epoch'
,
int
,
2
,
"The number of epoched to be trained."
)
add_arg
(
'output'
,
str
,
"./output
_0
"
,
"The directory the model and the test result to be saved to."
)
add_arg
(
'output'
,
str
,
"./output"
,
"The directory the model and the test result to be saved to."
)
add_arg
(
'init_model'
,
str
,
None
,
"The init model file of directory."
)
add_arg
(
'save_checkpoints'
,
bool
,
True
,
"Whether to save checkpoints."
)
add_arg
(
'run_test'
,
bool
,
True
,
"Whether to run test."
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录