├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── dataset ├── make_kenlm_dataset_latest.ipynb └── parser_sdamgia_latest.ipynb ├── dev └── detectron2-copypaste.ipynb ├── images └── public_leaderbord.jpg ├── metadata.json ├── models ├── a model-0-0.0374.ckpt └── nto_kenlm_model10.arpa ├── requirements.txt ├── run.py └── train ├── detectron2_segmentation_latest.ipynb └── ocr_model.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/README.md -------------------------------------------------------------------------------- /dataset/make_kenlm_dataset_latest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/dataset/make_kenlm_dataset_latest.ipynb -------------------------------------------------------------------------------- /dataset/parser_sdamgia_latest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/dataset/parser_sdamgia_latest.ipynb -------------------------------------------------------------------------------- /dev/detectron2-copypaste.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/dev/detectron2-copypaste.ipynb -------------------------------------------------------------------------------- /images/public_leaderbord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/images/public_leaderbord.jpg -------------------------------------------------------------------------------- /metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/metadata.json -------------------------------------------------------------------------------- /models/a model-0-0.0374.ckpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/models/a model-0-0.0374.ckpt -------------------------------------------------------------------------------- /models/nto_kenlm_model10.arpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/models/nto_kenlm_model10.arpa -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/run.py -------------------------------------------------------------------------------- /train/detectron2_segmentation_latest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/train/detectron2_segmentation_latest.ipynb -------------------------------------------------------------------------------- /train/ocr_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lednik7/nto-ai-text-recognition/HEAD/train/ocr_model.ipynb --------------------------------------------------------------------------------