You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README_EN.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,31 +21,31 @@ It contains two parts:
21
21
**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.
22
22
23
23
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.
25
25
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.
27
27
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.
29
29
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.
31
31
32
32
33
33
34
34
**Practice** (Right of the mindmap). This part uses PyTorch along with other tools comprehensively to implement several cool and interesting projects.
35
35
36
36
37
37
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.
39
39
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.
41
41
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.
43
43
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.
45
45
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.
47
47
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).
0 commit comments