├── .gitignore ├── Config.py ├── Model.py ├── README.md ├── generate.py ├── model.jpg └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hit-computer/char-rnn-tf/HEAD/.gitignore -------------------------------------------------------------------------------- /Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hit-computer/char-rnn-tf/HEAD/Config.py -------------------------------------------------------------------------------- /Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hit-computer/char-rnn-tf/HEAD/Model.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hit-computer/char-rnn-tf/HEAD/README.md -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hit-computer/char-rnn-tf/HEAD/generate.py -------------------------------------------------------------------------------- /model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hit-computer/char-rnn-tf/HEAD/model.jpg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hit-computer/char-rnn-tf/HEAD/train.py --------------------------------------------------------------------------------