Skip to content

Commit cab0d93

Browse files
committed
readme edited
1 parent 475fed2 commit cab0d93

File tree

1 file changed

+52
-2
lines changed

1 file changed

+52
-2
lines changed

README.md

+52-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,52 @@
1-
# pytorch-tutorial
2-
tutorial for deep learning researcher to learn pytorch.
1+
<p align="center"><img width="40%" src="png/pytorch_logo.png" /></p>
2+
3+
--------------------------------------------------------------------------------
4+
5+
This repository provides tutorial code for deep learning researchers to learn [PyTorch](https://github.com/pytorch/pytorch). In the tutorial, most of the models were implemented with less than 30 lines of code. Before starting this tutorial, it is recommended to finish [Official Pytorch Tutorial](https://github.com/pytorch/tutorials/blob/master/Deep%20Learning%20with%20PyTorch.ipynb).
6+
7+
8+
<br/>
9+
10+
## Table of Contents
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)
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)
24+
25+
26+
<br/>
27+
28+
## Getting Started
29+
```bash
30+
$ git clone https://github.com/yunjey/pytorch-tutorial.git
31+
$ cd pytorch-tutorial/project/
32+
$ python main.py # cpu version
33+
$ python main-gpu.py # gpu version
34+
```
35+
36+
<br/>
37+
38+
## Dependencies
39+
* [pytorch](https://github.com/pytorch/pytorch)
40+
* [pytorch-vision](https://github.com/pytorch/vision)
41+
* [gym](https://github.com/openai/gym)
42+
43+
44+
<br/>
45+
46+
## Future Work
47+
* [One-shot Learning](https://arxiv.org/abs/1606.04080)
48+
* [Question Answering](https://rajpurkar.github.io/SQuAD-explorer/)
49+
* [Visual Question Answering](http://www.visualqa.org/)
50+
51+
52+
<br/>

0 commit comments

Comments
 (0)