BASICS: Text Generation - jamahun/fakelab.studio GitHub Wiki

Torch-rnn (currently not working)

https://github.com/jcjohnson/torch-rnn TODO solve hdf5b issues

Char-rnn

https://github.com/karpathy/char-rnn

Install Dependencies

curl -s https://raw.githubusercontent.com/torch/ezinstall/master/install-deps | bash
source ~/.bashrc

Change directory

cd char-rnn

Move .txt data set into dataset folder, and amend the code bellow to match your datasets name:

th train.lua -data_dir data/some_folder -rnn_size 512 -num_layers 2 -dropout 0.5