@@ -9,26 +9,26 @@ This repository provides tutorial code for deep learning researchers to learn [P
9
9
10
10
## Table of Contents
11
11
12
- * [ PyTorch Basics] ( https://github.com/yunjey/pytorch-tutorial/blob /master/00%20-%20PyTorch%20Basics/main.py )
13
- * [ Linear Regression] ( https://github.com/yunjey/pytorch-tutorial/blob/master/04 %20-%20Linear%20Regression/main.py )
14
- * [ Logistic Regression] ( https://github.com/yunjey/pytorch-tutorial/blob/master/05 %20-%20Logistic%20Regression/main.py )
15
- * [ Feedforward Neural Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/01 %20-%20Feedforward%20Neural%20Network/main.py )
16
- * [ Convolutional Neural Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/02 %20-%20Convolutional%20Neural%20Network/main.py )
17
- * [ Deep Residual Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/03 %20-%20Deep%20Residual%20Network/main-gpu .py )
18
- * [ Recurrent Neural Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/06%20-%20Recurrent%20Neural%20Network/main.py )
19
- * [ Bidirectional Recurrent Neural Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/07%20-%20Bidirectional%20Recurrent%20Neural%20Network/main.py )
20
- * [ Language Model (RNNLM)] ( https://github.com/yunjey/pytorch-tutorial/blob/master/09%20-%20Language%20Model/main-gpu .py )
12
+ * [ PyTorch Basics] ( https://github.com/yunjey/pytorch-tutorial/tree /master/tutorials /00%20-%20PyTorch%20Basics/main.py )
13
+ * [ Linear Regression] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/01 %20-%20Linear%20Regression/main.py )
14
+ * [ Logistic Regression] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/02 %20-%20Logistic%20Regression/main.py )
15
+ * [ Feedforward Neural Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/03 %20-%20Feedforward%20Neural%20Network/main.py )
16
+ * [ Convolutional Neural Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/04 %20-%20Convolutional%20Neural%20Network/main.py )
17
+ * [ Deep Residual Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/05 %20-%20Deep%20Residual%20Network/main.py )
18
+ * [ Recurrent Neural Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/ 06%20-%20Recurrent%20Neural%20Network/main.py )
19
+ * [ Bidirectional Recurrent Neural Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/ 07%20-%20Bidirectional%20Recurrent%20Neural%20Network/main.py )
20
+ * [ Language Model (RNNLM)] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/ 09%20-%20Language%20Model/main.py )
21
21
* Image Captioning (CNN-RNN)
22
- * [ Generative Adversarial Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/08%20-%20Generative%20Adversarial%20Network/main.py )
23
- * [ Deep Q-Network and Q-learning (WIP)] ( https://github.com/yunjey/pytorch-tutorial/blob/master/10%20-%20Deep%20Q%20Network/dqn13.py )
22
+ * [ Generative Adversarial Network] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/ 08%20-%20Generative%20Adversarial%20Network/main.py )
23
+ * [ Deep Q-Network and Q-learning (WIP)] ( https://github.com/yunjey/pytorch-tutorial/blob/master/tutorials/ 10%20-%20Deep%20Q%20Network/dqn13.py )
24
24
25
25
26
26
<br />
27
27
28
28
## Getting Started
29
29
``` bash
30
30
$ git clone https://github.com/yunjey/pytorch-tutorial.git
31
- $ cd pytorch-tutorial/project/
31
+ $ cd pytorch-tutorial/tutorials/project_path
32
32
$ python main.py # cpu version
33
33
$ python main-gpu.py # gpu version
34
34
```
0 commit comments