My goal is to build an RNN that creates music lyrics based on the dataset.
pip install -r requirements.txt
To train use for example
python lyrics.py --artist=30y --epochs=250 --patience_limit=25 --lstm_layers=3 \
--lstm_units=64 --embedding=32 --size_x=100 --model_name=foobar
You can change any params, or you can just delete them (except for artist) or:
python lyrics.py --help
for info. For tensorboard use
tensorboard --logdir=target/train_log
from base folder (only works if you have at least 1 running/finished training).
python demo.py --model_name=${name_of_the_model}
or if you keep it blank you get the list of models you can predict from.
sudo apt-get update
sudo apt-get install texlive-full
./doc/gen_pdf.sh
use -s flag if you want it to be silent.
- RNN effectiveness (karpathy)
- Difficulty of training RNNs
- Visualizing and understanding RNNs
- AI written movie
- LSTM
- Multitask learning