├── .gitignore ├── LICENSE ├── README.md ├── eval.py ├── hyperparams.py ├── model.ckpt-50604 ├── prepro.py └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | etc/ 2 | asset/ 3 | data/ 4 | corpora/ 5 | *.pyc 6 | _* 7 | *~ 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/quasi-rnn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/quasi-rnn/HEAD/README.md -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/quasi-rnn/HEAD/eval.py -------------------------------------------------------------------------------- /hyperparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/quasi-rnn/HEAD/hyperparams.py -------------------------------------------------------------------------------- /model.ckpt-50604: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/quasi-rnn/HEAD/model.ckpt-50604 -------------------------------------------------------------------------------- /prepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/quasi-rnn/HEAD/prepro.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kyubyong/quasi-rnn/HEAD/train.py --------------------------------------------------------------------------------