forked from patrickloeber/pytorch-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3ed8b6
commit adab92b
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
## RNN In PyTorch | ||
Implement a Recurrent Neural Net (RNN) from scratch in PyTorch! I briefly explain the theory and different kinds of applications of RNNs. Then we implement a RNN to do name classification. | ||
|
||
## Watch the Tutorial | ||
[![Alt text](https://img.youtube.com/vi/WEV61GmmPrk/hqdefault.jpg)](https://youtu.be/WEV61GmmPrk) | ||
|
||
## Resources | ||
Download the data: | ||
https://download.pytorch.org/tutorial/data.zip | ||
|
||
PyTorch Beginner Course: | ||
https://www.youtube.com/playlist?list=PLqnslRFeH2UrcDBWF5mfPGpqQDSta6VK4 | ||
|
||
PyTorch Chatbot Tutorial: | ||
https://www.youtube.com/playlist?list=PLqnslRFeH2UrFW4AUgn-eY37qOAWQpJyg | ||
|
||
Further Readings: | ||
|
||
- https://karpathy.github.io/2015/05/21/rnn-effectiveness/ | ||
- https://stanford.edu/~shervine/teaching/cs-230/cheatsheet-recurrent-neural-networks#architecture | ||
- https://pytorch.org/tutorials/intermediate/char_rnn_classification_tutorial.html |