gitextract_lif5hpq3/ ├── .gitignore ├── LICENSE ├── README.md ├── char-rnn-classification/ │ ├── .gitignore │ ├── char-rnn-classification.ipynb │ ├── data.py │ ├── model.py │ ├── predict.py │ ├── server.py │ └── train.py ├── char-rnn-generation/ │ ├── README.md │ ├── char-rnn-generation.ipynb │ ├── generate.py │ ├── helpers.py │ ├── model.py │ └── train.py ├── conditional-char-rnn/ │ ├── conditional-char-rnn.ipynb │ ├── data.py │ ├── generate.py │ ├── model.py │ └── train.py ├── data/ │ └── names/ │ ├── Arabic.txt │ ├── Chinese.txt │ ├── Czech.txt │ ├── Dutch.txt │ ├── English.txt │ ├── French.txt │ ├── German.txt │ ├── Greek.txt │ ├── Irish.txt │ ├── Italian.txt │ ├── Japanese.txt │ ├── Korean.txt │ ├── Polish.txt │ ├── Portuguese.txt │ ├── Russian.txt │ ├── Scottish.txt │ ├── Spanish.txt │ └── Vietnamese.txt ├── glove-word-vectors/ │ └── glove-word-vectors.ipynb ├── reinforce-gridworld/ │ ├── helpers.py │ ├── reinforce-gridworld.ipynb │ └── reinforce-gridworld.py └── seq2seq-translation/ ├── images/ │ ├── attention-decoder-network.dot │ ├── decoder-network.dot │ └── encoder-network.dot ├── masked_cross_entropy.py ├── seq2seq-translation-batched.ipynb ├── seq2seq-translation-batched.py └── seq2seq-translation.ipynb