├── .gitignore ├── LICENSE ├── README.md ├── data └── shakespeare.txt ├── requirements-dev.txt ├── requirements.txt ├── rnn_tf.py └── setup.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.sw* 3 | *.log 4 | .idea 5 | env/ 6 | saved/ 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiglerg/RNN_Text_Generation_Tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiglerg/RNN_Text_Generation_Tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /data/shakespeare.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiglerg/RNN_Text_Generation_Tensorflow/HEAD/data/shakespeare.txt -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy==1.13.3 2 | tensorflow==1.4.0 3 | 4 | -------------------------------------------------------------------------------- /rnn_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiglerg/RNN_Text_Generation_Tensorflow/HEAD/rnn_tf.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | exclude=data,saved,env 3 | ignore= 4 | --------------------------------------------------------------------------------