gitextract_bzec1cqm/ ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── ci.yml │ ├── claude.yml │ ├── create_issue.yml │ ├── release.yml │ └── version-bump.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── benchmarks/ │ ├── __init__.py │ └── test_benchmark_yolox.py ├── examples/ │ └── ocr/ │ ├── engine.py │ ├── requirements.txt │ └── validate_ocr_performance.py ├── logger_config.yaml ├── pyproject.toml ├── renovate.json ├── sample-docs/ │ └── loremipsum.tiff ├── scripts/ │ ├── docker-build.sh │ ├── shellcheck.sh │ ├── test-unstructured-ingest-helper.sh │ └── version-sync.sh ├── test_unstructured_inference/ │ ├── conftest.py │ ├── inference/ │ │ ├── test_layout.py │ │ ├── test_layout_element.py │ │ └── test_layout_rotation.py │ ├── models/ │ │ ├── test_detectron2onnx.py │ │ ├── test_eval.py │ │ ├── test_model.py │ │ ├── test_tables.py │ │ └── test_yolox.py │ ├── test_config.py │ ├── test_elements.py │ ├── test_logger.py │ ├── test_math.py │ ├── test_utils.py │ └── test_visualization.py └── unstructured_inference/ ├── __init__.py ├── __version__.py ├── config.py ├── constants.py ├── inference/ │ ├── __init__.py │ ├── elements.py │ ├── layout.py │ ├── layoutelement.py │ └── pdf_image.py ├── logger.py ├── math.py ├── models/ │ ├── __init__.py │ ├── base.py │ ├── detectron2onnx.py │ ├── eval.py │ ├── table_postprocess.py │ ├── tables.py │ ├── unstructuredmodel.py │ └── yolox.py ├── utils.py └── visualize.py