├── .gitignore ├── README.md ├── __init__.py ├── cifar_cnn ├── README.md ├── __init__.py ├── eval.py ├── model │ ├── __init__.py │ └── cifar.py ├── preprocessor │ ├── __init__.py │ └── cifar10_input.py └── train.py ├── deep_q ├── PyGamePlayer │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ ├── examples │ │ ├── __init__.py │ │ ├── deep_q_half_pong_player.py │ │ ├── deep_q_pong_player.py │ │ ├── pong_player.py │ │ └── tetris_player.py │ ├── games │ │ ├── __init__.py │ │ ├── half_pong.py │ │ ├── mini_pong.py │ │ ├── pong.py │ │ └── tetris.py │ └── pygame_player.py ├── __init__.py ├── deep_q_networks │ ├── checkpoint │ ├── network-0 │ └── network-0.meta ├── model │ ├── __init__.py │ └── q_pong.py └── train.py ├── langmod_nn ├── README.md ├── __init__.py ├── data │ ├── english-senate-0.txt │ ├── english-senate-2.txt │ ├── good-bad.txt │ ├── test.png │ ├── test_train.png │ └── train.png ├── model │ ├── __init__.py │ └── langmod.py ├── preprocessor │ ├── __init__.py │ └── reader.py └── train.py ├── langmod_rnn ├── __init__.py ├── data │ ├── english-senate-0.txt │ ├── english-senate-2.txt │ └── good-bad.txt ├── model │ ├── __init__.py │ └── langmod_rnn.py ├── preprocessor │ ├── __init__.py │ └── reader.py └── train.py ├── memory_networks ├── __init__.py ├── model │ ├── __init__.py │ └── memn2n.py ├── preprocessor │ ├── __init__.py │ └── reader.py └── train.py ├── mnist_cnn ├── README.md ├── __init__.py ├── data │ ├── accuracy.png │ ├── learning_rate.png │ ├── loss.png │ ├── t10k-images-idx3-ubyte.gz │ ├── t10k-labels-idx1-ubyte.gz │ ├── train-images-idx3-ubyte.gz │ └── train-labels-idx1-ubyte.gz ├── model │ ├── __init__.py │ └── mnist_cnn.py ├── preprocessor │ ├── __init__.py │ └── loader.py └── train.py ├── mnist_nn ├── README.md ├── __init__.py └── mnist_nn.py ├── multilingual_embeddings ├── __init__.py ├── eval.py ├── model │ ├── __init__.py │ └── multitask_mt.py ├── preprocessor │ ├── __init__.py │ └── reader.py └── train.py ├── multilingual_lm ├── __init__.py ├── model │ ├── __init__.py │ └── lm.py ├── preprocessor │ ├── __init__.py │ └── reader.py └── train.py ├── seq2seq_mt ├── __init__.py ├── eval.py ├── model │ ├── __init__.py │ └── seq2seq.py ├── preprocessor │ ├── __init__.py │ └── reader.py └── train.py └── variational_autoencoder ├── README.md ├── __init__.py ├── model ├── __init__.py └── vae.py ├── results ├── reconstructed.png └── walk.png └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /cifar_cnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/cifar_cnn/README.md -------------------------------------------------------------------------------- /cifar_cnn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cifar_cnn/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/cifar_cnn/eval.py -------------------------------------------------------------------------------- /cifar_cnn/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cifar_cnn/model/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/cifar_cnn/model/cifar.py -------------------------------------------------------------------------------- /cifar_cnn/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /cifar_cnn/preprocessor/cifar10_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/cifar_cnn/preprocessor/cifar10_input.py -------------------------------------------------------------------------------- /cifar_cnn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/cifar_cnn/train.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/LICENSE -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/README.md -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Daniel' 2 | -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/examples/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Daniel' 2 | -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/examples/deep_q_half_pong_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/examples/deep_q_half_pong_player.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/examples/deep_q_pong_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/examples/deep_q_pong_player.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/examples/pong_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/examples/pong_player.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/examples/tetris_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/examples/tetris_player.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/games/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Daniel' 2 | -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/games/half_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/games/half_pong.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/games/mini_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/games/mini_pong.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/games/pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/games/pong.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/games/tetris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/games/tetris.py -------------------------------------------------------------------------------- /deep_q/PyGamePlayer/pygame_player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/PyGamePlayer/pygame_player.py -------------------------------------------------------------------------------- /deep_q/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /deep_q/deep_q_networks/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/deep_q_networks/checkpoint -------------------------------------------------------------------------------- /deep_q/deep_q_networks/network-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/deep_q_networks/network-0 -------------------------------------------------------------------------------- /deep_q/deep_q_networks/network-0.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/deep_q_networks/network-0.meta -------------------------------------------------------------------------------- /deep_q/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /deep_q/model/q_pong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/model/q_pong.py -------------------------------------------------------------------------------- /deep_q/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/deep_q/train.py -------------------------------------------------------------------------------- /langmod_nn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/README.md -------------------------------------------------------------------------------- /langmod_nn/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /langmod_nn/data/english-senate-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/data/english-senate-0.txt -------------------------------------------------------------------------------- /langmod_nn/data/english-senate-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/data/english-senate-2.txt -------------------------------------------------------------------------------- /langmod_nn/data/good-bad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/data/good-bad.txt -------------------------------------------------------------------------------- /langmod_nn/data/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/data/test.png -------------------------------------------------------------------------------- /langmod_nn/data/test_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/data/test_train.png -------------------------------------------------------------------------------- /langmod_nn/data/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/data/train.png -------------------------------------------------------------------------------- /langmod_nn/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /langmod_nn/model/langmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/model/langmod.py -------------------------------------------------------------------------------- /langmod_nn/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /langmod_nn/preprocessor/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/preprocessor/reader.py -------------------------------------------------------------------------------- /langmod_nn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_nn/train.py -------------------------------------------------------------------------------- /langmod_rnn/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /langmod_rnn/data/english-senate-0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_rnn/data/english-senate-0.txt -------------------------------------------------------------------------------- /langmod_rnn/data/english-senate-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_rnn/data/english-senate-2.txt -------------------------------------------------------------------------------- /langmod_rnn/data/good-bad.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_rnn/data/good-bad.txt -------------------------------------------------------------------------------- /langmod_rnn/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /langmod_rnn/model/langmod_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_rnn/model/langmod_rnn.py -------------------------------------------------------------------------------- /langmod_rnn/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /langmod_rnn/preprocessor/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_rnn/preprocessor/reader.py -------------------------------------------------------------------------------- /langmod_rnn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/langmod_rnn/train.py -------------------------------------------------------------------------------- /memory_networks/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /memory_networks/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /memory_networks/model/memn2n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/memory_networks/model/memn2n.py -------------------------------------------------------------------------------- /memory_networks/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /memory_networks/preprocessor/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/memory_networks/preprocessor/reader.py -------------------------------------------------------------------------------- /memory_networks/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/memory_networks/train.py -------------------------------------------------------------------------------- /mnist_cnn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/README.md -------------------------------------------------------------------------------- /mnist_cnn/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /mnist_cnn/data/accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/data/accuracy.png -------------------------------------------------------------------------------- /mnist_cnn/data/learning_rate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/data/learning_rate.png -------------------------------------------------------------------------------- /mnist_cnn/data/loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/data/loss.png -------------------------------------------------------------------------------- /mnist_cnn/data/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/data/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /mnist_cnn/data/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/data/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /mnist_cnn/data/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/data/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /mnist_cnn/data/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/data/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /mnist_cnn/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /mnist_cnn/model/mnist_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/model/mnist_cnn.py -------------------------------------------------------------------------------- /mnist_cnn/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /mnist_cnn/preprocessor/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/preprocessor/loader.py -------------------------------------------------------------------------------- /mnist_cnn/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_cnn/train.py -------------------------------------------------------------------------------- /mnist_nn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_nn/README.md -------------------------------------------------------------------------------- /mnist_nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mnist_nn/mnist_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/mnist_nn/mnist_nn.py -------------------------------------------------------------------------------- /multilingual_embeddings/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /multilingual_embeddings/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/multilingual_embeddings/eval.py -------------------------------------------------------------------------------- /multilingual_embeddings/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /multilingual_embeddings/model/multitask_mt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/multilingual_embeddings/model/multitask_mt.py -------------------------------------------------------------------------------- /multilingual_embeddings/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /multilingual_embeddings/preprocessor/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/multilingual_embeddings/preprocessor/reader.py -------------------------------------------------------------------------------- /multilingual_embeddings/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/multilingual_embeddings/train.py -------------------------------------------------------------------------------- /multilingual_lm/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /multilingual_lm/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /multilingual_lm/model/lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/multilingual_lm/model/lm.py -------------------------------------------------------------------------------- /multilingual_lm/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /multilingual_lm/preprocessor/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/multilingual_lm/preprocessor/reader.py -------------------------------------------------------------------------------- /multilingual_lm/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/multilingual_lm/train.py -------------------------------------------------------------------------------- /seq2seq_mt/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /seq2seq_mt/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/seq2seq_mt/eval.py -------------------------------------------------------------------------------- /seq2seq_mt/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seq2seq_mt/model/seq2seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/seq2seq_mt/model/seq2seq.py -------------------------------------------------------------------------------- /seq2seq_mt/preprocessor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /seq2seq_mt/preprocessor/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/seq2seq_mt/preprocessor/reader.py -------------------------------------------------------------------------------- /seq2seq_mt/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/seq2seq_mt/train.py -------------------------------------------------------------------------------- /variational_autoencoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/variational_autoencoder/README.md -------------------------------------------------------------------------------- /variational_autoencoder/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /variational_autoencoder/model/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'sidd' 2 | -------------------------------------------------------------------------------- /variational_autoencoder/model/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/variational_autoencoder/model/vae.py -------------------------------------------------------------------------------- /variational_autoencoder/results/reconstructed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/variational_autoencoder/results/reconstructed.png -------------------------------------------------------------------------------- /variational_autoencoder/results/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/variational_autoencoder/results/walk.png -------------------------------------------------------------------------------- /variational_autoencoder/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddk/deep-nlp/HEAD/variational_autoencoder/train.py --------------------------------------------------------------------------------