Skip to content

Commit

Permalink
update chapter8 readme
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyuntc committed Jan 5, 2020
1 parent 08a340f commit 2db9c66
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
20 changes: 10 additions & 10 deletions README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,31 +21,31 @@ It contains two parts:
**Introduction** (left of the mindmap). This part introduces the main modules of PyTorch and some tools commonly used in deep learning. Jupyter notebook is used as a teaching tool, you can modify and run the notebook interactively.


- [Chapter 2](chapter2-快速入门/): Learning environment setup and a quickstart tutorial. You may spend about 1 to 2 hours to quickly complete the quickstart, and then choose to read the following related chapters in depth according to the needs.
- [Chapter 2](chapter02-quickstart/): Learning environment setup and a quickstart tutorial. You may spend about 1 to 2 hours to quickly complete the quickstart, and then choose to read the following related chapters in depth according to the needs.

- [Chapter 3](chapter3-Tensor和autograd/): Introduction to the multidimensional array object (`Tensor`) and dynamic graph engine (`autograd`). Implement linear regression using Tensor and autograd respectively, and compare the differences between them. This chapter also makes a more in-depth analysis of the underlying design of tensor and autograd.
- [Chapter 3](chapter03-tensor_and_autograd/): Introduction to the multidimensional array object (`Tensor`) and dynamic graph engine (`autograd`). Implement linear regression using Tensor and autograd respectively, and compare the differences between them. This chapter also makes a more in-depth analysis of the underlying design of tensor and autograd.

- [Chapter 4](chapter4-神经网络工具箱nn/): Introduction to `torch.nn`, and explanation of the common layers, loss function, optimizer and so on.
- [Chapter 4](chapter04-neural_network/): Introduction to `torch.nn`, and explanation of the common layers, loss function, optimizer and so on.

- [Chapter 5](chapter5-常用工具/): introduction to the data loading, GPU acceleration, serialization and visualization tools.
- [Chapter 5](chapter05-utilities/): introduction to the data loading, GPU acceleration, serialization and visualization tools.



**Practice** (Right of the mindmap). This part uses PyTorch along with other tools comprehensively to implement several cool and interesting projects.



- [Chapter 6](chapter6-实战指南/): a connecting chapter to review PyTorch tools and apply it to a relatively easy task: image classification. In the process of implementation, guide the reader to review the knowledge of the first five chapters, and put forward the code specification to reasonably organizing the program and code so that the program is more readable and maintainable. This chapter also introduces how to debug in PyTorch.
- [Chapter 6](chapter06-best_practice/): a connecting chapter to review PyTorch tools and apply it to a relatively easy task: image classification. In the process of implementation, guide the reader to review the knowledge of the first five chapters, and put forward the code specification to reasonably organizing the program and code so that the program is more readable and maintainable. This chapter also introduces how to debug in PyTorch.

- [Chapter 7](chapter7-GAN生成动漫头像/): popular GAN for the readers, and guides you to implement an animate image generator from scratch.
- [Chapter 7](chapter07-AnimeGAN/): popular GAN for the readers, and guides you to implement an animate image generator from scratch.

- [Chapter 8](chapter8-风格迁移(Neural%20Style)): the knowledge of style transfer and guide you to implement the fast neural style, turning your photos into masterpieces.
- [Chapter 8](chapter08-neural_style/README_EN.MD): the knowledge of style transfer and guide you to implement the fast neural style, turning your photos into masterpieces.

- [Chapter 9](chapter9-神经网络写诗\(CharRNN\)/): the knowledge of natural language processing and CharRNN. By collecting tens of thousands of Tang poems, you can train a small network that can write poems.
- [Chapter 9](chapter09-neural_poet_RNN/): the knowledge of natural language processing and CharRNN. By collecting tens of thousands of Tang poems, you can train a small network that can write poems.

- [Chapter 10](chapter10-图像描述(Image%20Caption)/): Knowledge of image caption and takes the data of AI Challenger competition as an example to guide you to implement a small program that can carry out simple image description.
- [Chapter 10](chapter10-image_caption/): Knowledge of image caption and takes the data of AI Challenger competition as an example to guide you to implement a small program that can carry out simple image description.

- [Chapter 11](chapter11-语音识别\(LSTM-CTC\)): (*new, experimental**) speech recognition mainly written by [diamondfan](https://github.com/diamondfan).
- [Chapter 11](chapter11-speech_recognition/): (*new, experimental**) speech recognition mainly written by [diamondfan](https://github.com/diamondfan).



Expand Down
4 changes: 4 additions & 0 deletions chapter08-neural_style/README.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## [English Version](README_EN.MD)

这是电子工业出版社的《深度学习框架PyTorch:入门与实践》第八章的配套代码,实现了快速风格迁移。



## 1 环境准备

- 本程序需要安装[PyTorch](https://pytorch.org/)
Expand Down
6 changes: 4 additions & 2 deletions chapter08-neural_style/README_EN.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## [中文版本](README.MD)

Code for *PyTorch: Introduction and Practice*, chapter-8 fast neural style.

## Env Setup
Expand Down Expand Up @@ -79,8 +81,8 @@ To train more styles, try different style images by `--style-path=mystyle.png`
### Code Compatibility
train
- [x] GPU
- [] CPU
- [] Python2
- [ ] CPU
- [ ] Python2
- [x] Python3

test:
Expand Down

0 comments on commit 2db9c66

Please sign in to comment.