Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix_issue234 #236

Merged
merged 1 commit into from
Mar 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ GAN-Generative Adversarial Network, was praised by "the Father of Convolutional
* [Wav2Lip](./docs/en_US/tutorials/wav2lip.md)
* [Super_Resolution](./docs/en_US/tutorials/super_resolution.md)
* [StyleGAN2](./docs/en_US/tutorials/styleganv2.md)
* [Pixel2Style2Pixel](./docs/en_US/tutorials/pixel2style2pixel.md)


## Composite Application
Expand Down
1 change: 1 addition & 0 deletions README_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ GAN--生成对抗网络,被“卷积网络之父”**Yann LeCun(杨立昆)
* [Wav2Lip](docs/zh_CN/tutorials/wav2lip.md)
* [Super_Resolution](./docs/zh_CN/tutorials/super_resolution.md)
* [StyleGAN2](./docs/zh_CN/tutorials/styleganv2.md)
* [Pixel2Style2Pixel](./docs/zh_CN/tutorials/pixel2style2pixel.md)


## 复合应用
Expand Down
2 changes: 1 addition & 1 deletion docs/en_US/tutorials/pixel2style2pixel.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The user could use the following command to generate and select the local image

```
cd applications/
python -u tools/styleganv2.py \
python -u tools/pixel2style2pixel.py \
--input_image <YOUR INPUT IMAGE> \
--output_path <DIRECTORY TO STORE OUTPUT IMAGE> \
--weight_path <YOUR PRETRAINED MODEL PATH> \
Expand Down
2 changes: 1 addition & 1 deletion docs/zh_CN/tutorials/pixel2style2pixel.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Pixel2Style2Pixel使用相当大的模型对图像进行编码,将图像编码

```
cd applications/
python -u tools/styleganv2.py \
python -u tools/pixel2style2pixel.py \
--input_image <替换为输入的图像路径> \
--output_path <替换为生成图片存放的文件夹> \
--weight_path <替换为你的预训练模型路径> \
Expand Down