├── .gitignore ├── CMakeLists.txt ├── GRU.lua ├── LICENSE ├── README.md ├── codec.lua ├── contrast.txt ├── convert_space_sep_data_to_lua_tensor.py ├── ctc.lua ├── ctc_log.lua ├── ctc_lua.lua ├── gaussian_test.py ├── libctc.cc ├── loader.lua ├── main.lua ├── normalizer.cc ├── ocr.lua ├── pretrain.lua ├── random-test.py ├── rbm.lua ├── sample_setting.json ├── slider.lua ├── solve.lua ├── test_codec.lua ├── test_ctc.lua ├── test_ctc_large.lua ├── test_cuda.lua ├── test_cuda_ctc.lua ├── test_gru.lua ├── test_normalizer.lua ├── test_sharedclone.lua ├── test_slider.lua ├── test_thread.lua ├── test_thread1.lua └── utils ├── decoder.lua ├── levenshtein.lua └── logs.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /GRU.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/GRU.lua -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/README.md -------------------------------------------------------------------------------- /codec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/codec.lua -------------------------------------------------------------------------------- /contrast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/contrast.txt -------------------------------------------------------------------------------- /convert_space_sep_data_to_lua_tensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/convert_space_sep_data_to_lua_tensor.py -------------------------------------------------------------------------------- /ctc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/ctc.lua -------------------------------------------------------------------------------- /ctc_log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/ctc_log.lua -------------------------------------------------------------------------------- /ctc_lua.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/ctc_lua.lua -------------------------------------------------------------------------------- /gaussian_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/gaussian_test.py -------------------------------------------------------------------------------- /libctc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/libctc.cc -------------------------------------------------------------------------------- /loader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/loader.lua -------------------------------------------------------------------------------- /main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/main.lua -------------------------------------------------------------------------------- /normalizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/normalizer.cc -------------------------------------------------------------------------------- /ocr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/ocr.lua -------------------------------------------------------------------------------- /pretrain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/pretrain.lua -------------------------------------------------------------------------------- /random-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/random-test.py -------------------------------------------------------------------------------- /rbm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/rbm.lua -------------------------------------------------------------------------------- /sample_setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/sample_setting.json -------------------------------------------------------------------------------- /slider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/slider.lua -------------------------------------------------------------------------------- /solve.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/solve.lua -------------------------------------------------------------------------------- /test_codec.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_codec.lua -------------------------------------------------------------------------------- /test_ctc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_ctc.lua -------------------------------------------------------------------------------- /test_ctc_large.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_ctc_large.lua -------------------------------------------------------------------------------- /test_cuda.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_cuda.lua -------------------------------------------------------------------------------- /test_cuda_ctc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_cuda_ctc.lua -------------------------------------------------------------------------------- /test_gru.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_gru.lua -------------------------------------------------------------------------------- /test_normalizer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_normalizer.lua -------------------------------------------------------------------------------- /test_sharedclone.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_sharedclone.lua -------------------------------------------------------------------------------- /test_slider.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_slider.lua -------------------------------------------------------------------------------- /test_thread.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_thread.lua -------------------------------------------------------------------------------- /test_thread1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/test_thread1.lua -------------------------------------------------------------------------------- /utils/decoder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/utils/decoder.lua -------------------------------------------------------------------------------- /utils/levenshtein.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/utils/levenshtein.lua -------------------------------------------------------------------------------- /utils/logs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edward-zhu/umaru/HEAD/utils/logs.lua --------------------------------------------------------------------------------