Skip to content

Commit 2db9c66

Browse files
author
root
committed
update chapter8 readme
1 parent 08a340f commit 2db9c66

File tree

3 files changed

+18
-12
lines changed

3 files changed

+18
-12
lines changed

README_EN.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,31 +21,31 @@ It contains two parts:
2121
**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.
2222

2323

24-
- [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.
24+
- [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.
2525

26-
- [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.
26+
- [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.
2727

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

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

3232

3333

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

3636

3737

38-
- [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.
38+
- [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.
3939

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

42-
- [Chapter 8](chapter8-风格迁移(Neural%20Style)): the knowledge of style transfer and guide you to implement the fast neural style, turning your photos into masterpieces.
42+
- [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.
4343

44-
- [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.
44+
- [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.
4545

46-
- [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.
46+
- [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.
4747

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

5050

5151

chapter08-neural_style/README.MD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
## [English Version](README_EN.MD)
2+
13
这是电子工业出版社的《深度学习框架PyTorch:入门与实践》第八章的配套代码,实现了快速风格迁移。
24

5+
6+
37
## 1 环境准备
48

59
- 本程序需要安装[PyTorch](https://pytorch.org/)

chapter08-neural_style/README_EN.MD

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## [中文版本](README.MD)
2+
13
Code for *PyTorch: Introduction and Practice*, chapter-8 fast neural style.
24

35
## Env Setup
@@ -79,8 +81,8 @@ To train more styles, try different style images by `--style-path=mystyle.png`
7981
### Code Compatibility
8082
train
8183
- [x] GPU
82-
- [] CPU
83-
- [] Python2
84+
- [ ] CPU
85+
- [ ] Python2
8486
- [x] Python3
8587

8688
test:

0 commit comments

Comments
 (0)