├── .gitignore ├── LICENSE ├── README.md ├── doc ├── arch │ ├── bluche │ │ ├── bluche.drawio │ │ └── bluche.png │ ├── flor │ │ ├── flor.drawio │ │ └── flor.png │ └── puigcerver │ │ ├── puigcerver.drawio │ │ └── puigcerver.png └── image │ ├── bentham_sample.png │ ├── header.png │ └── preprocessing sample │ ├── 1_0_original.png │ ├── 1_1_norm.png │ ├── 1_2_illumination.png │ ├── 1_3_deslant.png │ ├── 1_4_final.png │ ├── 2_0_original.png │ ├── 2_1_norm.png │ ├── 2_2_illumination.png │ ├── 2_3_deslant.png │ └── 2_4_final.png ├── raw └── .gitkeep ├── requirements.txt └── src ├── data ├── __init__.py ├── evaluation.py ├── generator.py ├── preproc.py └── reader.py ├── language ├── kaldi-decode-script.sh ├── model.py └── utils │ ├── add_lex_disambig.pl │ ├── compCharsPriors.sh │ ├── create_proto_rnn-ds.sh │ ├── eps2disambig.pl │ ├── find_arpa_oovs.pl │ ├── force-alignmrnt-ext.awk │ ├── int2sym.pl │ ├── make_lexicon_fst.pl │ ├── mkgraph.sh │ ├── mkgraph_HCL.sh │ ├── parse_options.sh │ ├── prepare_feat.sh │ ├── prepare_lang_cl-ds.sh │ ├── prepare_lang_test-ds.sh │ ├── prepare_lang_test-ds.sh_bck │ ├── prepare_transc_cl.sh │ ├── pst2loglkh.sh │ ├── remove_oovs.pl │ ├── score.sh │ └── sym2int.pl ├── main.py ├── network ├── __init__.py ├── layers.py └── model.py └── tutorial.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/README.md -------------------------------------------------------------------------------- /doc/arch/bluche/bluche.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/arch/bluche/bluche.drawio -------------------------------------------------------------------------------- /doc/arch/bluche/bluche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/arch/bluche/bluche.png -------------------------------------------------------------------------------- /doc/arch/flor/flor.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/arch/flor/flor.drawio -------------------------------------------------------------------------------- /doc/arch/flor/flor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/arch/flor/flor.png -------------------------------------------------------------------------------- /doc/arch/puigcerver/puigcerver.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/arch/puigcerver/puigcerver.drawio -------------------------------------------------------------------------------- /doc/arch/puigcerver/puigcerver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/arch/puigcerver/puigcerver.png -------------------------------------------------------------------------------- /doc/image/bentham_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/bentham_sample.png -------------------------------------------------------------------------------- /doc/image/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/header.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/1_0_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/1_0_original.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/1_1_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/1_1_norm.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/1_2_illumination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/1_2_illumination.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/1_3_deslant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/1_3_deslant.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/1_4_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/1_4_final.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/2_0_original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/2_0_original.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/2_1_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/2_1_norm.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/2_2_illumination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/2_2_illumination.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/2_3_deslant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/2_3_deslant.png -------------------------------------------------------------------------------- /doc/image/preprocessing sample/2_4_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/doc/image/preprocessing sample/2_4_final.png -------------------------------------------------------------------------------- /raw/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/data/evaluation.py -------------------------------------------------------------------------------- /src/data/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/data/generator.py -------------------------------------------------------------------------------- /src/data/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/data/preproc.py -------------------------------------------------------------------------------- /src/data/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/data/reader.py -------------------------------------------------------------------------------- /src/language/kaldi-decode-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/kaldi-decode-script.sh -------------------------------------------------------------------------------- /src/language/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/model.py -------------------------------------------------------------------------------- /src/language/utils/add_lex_disambig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/add_lex_disambig.pl -------------------------------------------------------------------------------- /src/language/utils/compCharsPriors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/compCharsPriors.sh -------------------------------------------------------------------------------- /src/language/utils/create_proto_rnn-ds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/create_proto_rnn-ds.sh -------------------------------------------------------------------------------- /src/language/utils/eps2disambig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/eps2disambig.pl -------------------------------------------------------------------------------- /src/language/utils/find_arpa_oovs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/find_arpa_oovs.pl -------------------------------------------------------------------------------- /src/language/utils/force-alignmrnt-ext.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/force-alignmrnt-ext.awk -------------------------------------------------------------------------------- /src/language/utils/int2sym.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/int2sym.pl -------------------------------------------------------------------------------- /src/language/utils/make_lexicon_fst.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/make_lexicon_fst.pl -------------------------------------------------------------------------------- /src/language/utils/mkgraph.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/mkgraph.sh -------------------------------------------------------------------------------- /src/language/utils/mkgraph_HCL.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/mkgraph_HCL.sh -------------------------------------------------------------------------------- /src/language/utils/parse_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/parse_options.sh -------------------------------------------------------------------------------- /src/language/utils/prepare_feat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/prepare_feat.sh -------------------------------------------------------------------------------- /src/language/utils/prepare_lang_cl-ds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/prepare_lang_cl-ds.sh -------------------------------------------------------------------------------- /src/language/utils/prepare_lang_test-ds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/prepare_lang_test-ds.sh -------------------------------------------------------------------------------- /src/language/utils/prepare_lang_test-ds.sh_bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/prepare_lang_test-ds.sh_bck -------------------------------------------------------------------------------- /src/language/utils/prepare_transc_cl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/prepare_transc_cl.sh -------------------------------------------------------------------------------- /src/language/utils/pst2loglkh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/pst2loglkh.sh -------------------------------------------------------------------------------- /src/language/utils/remove_oovs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/remove_oovs.pl -------------------------------------------------------------------------------- /src/language/utils/score.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/score.sh -------------------------------------------------------------------------------- /src/language/utils/sym2int.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/language/utils/sym2int.pl -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/main.py -------------------------------------------------------------------------------- /src/network/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/network/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/network/layers.py -------------------------------------------------------------------------------- /src/network/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/network/model.py -------------------------------------------------------------------------------- /src/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurflor23/handwritten-text-recognition/HEAD/src/tutorial.ipynb --------------------------------------------------------------------------------