My PyTorch playground for NLP
- 
Installing Anaconda (Python3.6 will also be installed) 
 wget https://repo.continuum.io/archive/Anaconda3-4.2.0-Linux-x86_64.sh
 bash Anaconda3-4.2.0-Linux-x86_64.sh # prefix: $ANACONDA_PATH
- 
Installing PyTorch (0.2.0) in an Anaconda env 
 conda create --name pytorch_test
 source $ANACONDA_PATH/envs/pytorch_test/bin/activate pytorch_test
 conda install pytorch torchvision cuda80 -c soumith
- 
A Joint Many-Task Model (./jmt) 
 An implementation of the JMT model proposed in our EMNLP 2017 paper
- 
Text Classifier (./text_classifier) 
 Classifying input text (wrods, phrases, sentences, or documents) using LSTM
Feel free to e-mail me (hassy@logos.t.u-tokyo.ac.jp).