├── .gitignore ├── LICENSE ├── README-CN.md ├── README.md ├── bert_modified ├── create_data.py ├── create_tf_record.py ├── modeling.py └── tokenization.py ├── char_sim.py ├── data ├── char_meta.txt ├── ocr_test_1000.txt └── ocr_train_3575.txt ├── faspell.py ├── faspell_configs.json ├── masked_lm.py ├── model_fig.png └── plot.py /.gitignore: -------------------------------------------------------------------------------- 1 | model/ 2 | data/char_meta_all.txt 3 | apted.jar 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/README.md -------------------------------------------------------------------------------- /bert_modified/create_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/bert_modified/create_data.py -------------------------------------------------------------------------------- /bert_modified/create_tf_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/bert_modified/create_tf_record.py -------------------------------------------------------------------------------- /bert_modified/modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/bert_modified/modeling.py -------------------------------------------------------------------------------- /bert_modified/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/bert_modified/tokenization.py -------------------------------------------------------------------------------- /char_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/char_sim.py -------------------------------------------------------------------------------- /data/char_meta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/data/char_meta.txt -------------------------------------------------------------------------------- /data/ocr_test_1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/data/ocr_test_1000.txt -------------------------------------------------------------------------------- /data/ocr_train_3575.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/data/ocr_train_3575.txt -------------------------------------------------------------------------------- /faspell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/faspell.py -------------------------------------------------------------------------------- /faspell_configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/faspell_configs.json -------------------------------------------------------------------------------- /masked_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/masked_lm.py -------------------------------------------------------------------------------- /model_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/model_fig.png -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqiyi/FASPell/HEAD/plot.py --------------------------------------------------------------------------------