├── .gitignore ├── CHANGE-Cantab.log ├── CHANGE.log ├── LICENSE ├── README.md ├── doc ├── FAQ.txt └── index.html ├── example.sh ├── fastexp.h ├── makefile ├── rnnlm.cpp ├── rnnlmlib.cpp ├── rnnlmlib.h ├── test ├── train └── valid /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGE-Cantab.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/CHANGE-Cantab.log -------------------------------------------------------------------------------- /CHANGE.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/CHANGE.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/README.md -------------------------------------------------------------------------------- /doc/FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/doc/FAQ.txt -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/doc/index.html -------------------------------------------------------------------------------- /example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/example.sh -------------------------------------------------------------------------------- /fastexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/fastexp.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/makefile -------------------------------------------------------------------------------- /rnnlm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/rnnlm.cpp -------------------------------------------------------------------------------- /rnnlmlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/rnnlmlib.cpp -------------------------------------------------------------------------------- /rnnlmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/rnnlmlib.h -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/test -------------------------------------------------------------------------------- /train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/train -------------------------------------------------------------------------------- /valid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/katakombi/rnnlm/HEAD/valid --------------------------------------------------------------------------------