├── .gitignore ├── README.md ├── docker ├── Dockerfile └── build_image.sh ├── model.py ├── run_docker.sh ├── sample.py ├── sample_frozen.py ├── save ├── checkpoint ├── config.pkl ├── model.ckpt-10000 ├── model.ckpt-10000.meta ├── model.ckpt-10500 ├── model.ckpt-10500.meta ├── model.ckpt-11000 ├── model.ckpt-11000.meta ├── model.ckpt-9000 ├── model.ckpt-9000.meta ├── model.ckpt-9500 └── model.ckpt-9500.meta ├── svg ├── example.svg ├── example1.color.svg ├── example1.eos_pdf.svg ├── example1.multi_color.svg ├── example1.normal.svg ├── example1.pdf.svg └── many_examples.svg ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/build_image.sh: -------------------------------------------------------------------------------- 1 | docker build --tag write-rnn-tensorflow:1.5.0-py3 . 2 | 3 | -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/model.py -------------------------------------------------------------------------------- /run_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/run_docker.sh -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/sample.py -------------------------------------------------------------------------------- /sample_frozen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/sample_frozen.py -------------------------------------------------------------------------------- /save/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/checkpoint -------------------------------------------------------------------------------- /save/config.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/config.pkl -------------------------------------------------------------------------------- /save/model.ckpt-10000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-10000 -------------------------------------------------------------------------------- /save/model.ckpt-10000.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-10000.meta -------------------------------------------------------------------------------- /save/model.ckpt-10500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-10500 -------------------------------------------------------------------------------- /save/model.ckpt-10500.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-10500.meta -------------------------------------------------------------------------------- /save/model.ckpt-11000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-11000 -------------------------------------------------------------------------------- /save/model.ckpt-11000.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-11000.meta -------------------------------------------------------------------------------- /save/model.ckpt-9000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-9000 -------------------------------------------------------------------------------- /save/model.ckpt-9000.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-9000.meta -------------------------------------------------------------------------------- /save/model.ckpt-9500: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-9500 -------------------------------------------------------------------------------- /save/model.ckpt-9500.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/save/model.ckpt-9500.meta -------------------------------------------------------------------------------- /svg/example.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/svg/example.svg -------------------------------------------------------------------------------- /svg/example1.color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/svg/example1.color.svg -------------------------------------------------------------------------------- /svg/example1.eos_pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/svg/example1.eos_pdf.svg -------------------------------------------------------------------------------- /svg/example1.multi_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/svg/example1.multi_color.svg -------------------------------------------------------------------------------- /svg/example1.normal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/svg/example1.normal.svg -------------------------------------------------------------------------------- /svg/example1.pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/svg/example1.pdf.svg -------------------------------------------------------------------------------- /svg/many_examples.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/svg/many_examples.svg -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hardmaru/write-rnn-tensorflow/HEAD/utils.py --------------------------------------------------------------------------------