gitextract_7yglu2_f/ ├── .conda/ │ └── meta.yaml ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ ├── dependabot.yml │ ├── release.yml │ └── workflows/ │ ├── builds.yml │ ├── clear_caches.yml │ ├── demo.yml │ ├── docker.yml │ ├── main.yml │ ├── publish.yml │ └── style.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── demo/ │ ├── README.md │ ├── app.py │ ├── packages.txt │ └── requirements.txt ├── onnxtr/ │ ├── __init__.py │ ├── contrib/ │ │ ├── __init__.py │ │ ├── artefacts.py │ │ └── base.py │ ├── file_utils.py │ ├── io/ │ │ ├── __init__.py │ │ ├── elements.py │ │ ├── html.py │ │ ├── image.py │ │ ├── pdf.py │ │ └── reader.py │ ├── models/ │ │ ├── __init__.py │ │ ├── _utils.py │ │ ├── builder.py │ │ ├── classification/ │ │ │ ├── __init__.py │ │ │ ├── models/ │ │ │ │ ├── __init__.py │ │ │ │ └── mobilenet.py │ │ │ ├── predictor/ │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ └── zoo.py │ │ ├── detection/ │ │ │ ├── __init__.py │ │ │ ├── _utils/ │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── core.py │ │ │ ├── models/ │ │ │ │ ├── __init__.py │ │ │ │ ├── differentiable_binarization.py │ │ │ │ ├── fast.py │ │ │ │ └── linknet.py │ │ │ ├── postprocessor/ │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── predictor/ │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ └── zoo.py │ │ ├── engine.py │ │ ├── factory/ │ │ │ ├── __init__.py │ │ │ └── hub.py │ │ ├── predictor/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── predictor.py │ │ ├── preprocessor/ │ │ │ ├── __init__.py │ │ │ └── base.py │ │ ├── recognition/ │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── models/ │ │ │ │ ├── __init__.py │ │ │ │ ├── crnn.py │ │ │ │ ├── master.py │ │ │ │ ├── parseq.py │ │ │ │ ├── sar.py │ │ │ │ ├── viptr.py │ │ │ │ └── vitstr.py │ │ │ ├── predictor/ │ │ │ │ ├── __init__.py │ │ │ │ ├── _utils.py │ │ │ │ └── base.py │ │ │ ├── utils.py │ │ │ └── zoo.py │ │ └── zoo.py │ ├── py.typed │ ├── transforms/ │ │ ├── __init__.py │ │ └── base.py │ └── utils/ │ ├── __init__.py │ ├── common_types.py │ ├── data.py │ ├── fonts.py │ ├── geometry.py │ ├── multithreading.py │ ├── reconstitution.py │ ├── repr.py │ ├── visualization.py │ └── vocabs.py ├── pyproject.toml ├── scripts/ │ ├── convert_to_float16.py │ ├── evaluate.py │ ├── latency.py │ └── quantize.py ├── setup.py └── tests/ ├── common/ │ ├── test_contrib.py │ ├── test_core.py │ ├── test_engine_cfg.py │ ├── test_headers.py │ ├── test_io.py │ ├── test_io_elements.py │ ├── test_models.py │ ├── test_models_builder.py │ ├── test_models_classification.py │ ├── test_models_detection.py │ ├── test_models_detection_utils.py │ ├── test_models_factory.py │ ├── test_models_preprocessor.py │ ├── test_models_recognition.py │ ├── test_models_recognition_utils.py │ ├── test_models_zoo.py │ ├── test_transforms.py │ ├── test_utils_data.py │ ├── test_utils_fonts.py │ ├── test_utils_geometry.py │ ├── test_utils_multithreading.py │ ├── test_utils_reconstitution.py │ ├── test_utils_visualization.py │ └── test_utils_vocabs.py └── conftest.py