gitextract_9oovgxx4/ ├── .dockerignore ├── .gitignore ├── .pre-commit-config.yaml ├── Changelog ├── Dockerfile ├── LICENSE ├── README.md ├── crnn/ │ ├── dataset_factory.py │ ├── decoders.py │ ├── eval.py │ ├── export.py │ ├── losses.py │ ├── metrics.py │ ├── models.py │ └── train.py ├── example/ │ ├── icdar2013_annotation.txt │ ├── mjsynth_annotation.txt │ ├── simple_annotation.txt │ └── table.txt ├── pyproject.toml ├── requirements.txt ├── requirements_dev.txt └── tools/ └── demo.py