gitextract_f1yjucyy/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── 01-feature_request.md │ │ ├── 02-bug.md │ │ └── 03-blank.md │ └── workflows/ │ ├── SyncToGitee.yml │ ├── docs_build_develop.yml │ ├── docs_build_release.yml │ ├── publish_whl.yml │ └── push_discord.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── cliff.toml ├── demo.py ├── docs/ │ ├── blog/ │ │ ├── .authors.yml │ │ ├── .meta.yml │ │ ├── index.md │ │ └── posts/ │ │ └── support_pp_doc_layout.md │ ├── contributing.md │ ├── doc_whl_rapid_layout.md │ ├── hooks/ │ │ ├── change_copyright.py │ │ ├── expiry.py │ │ └── link.py │ ├── index.md │ ├── install_usage/ │ │ ├── how_to_use_other_engine.md │ │ ├── installation.md │ │ └── usage.md │ ├── models.md │ ├── quickstart.md │ └── stylesheets/ │ └── extra.css ├── mkdocs.yml ├── overrides/ │ ├── 404.html │ ├── main.html │ └── partials/ │ ├── comments.html │ ├── content.html │ └── expired_notice.html ├── rapid_layout/ │ ├── __init__.py │ ├── configs/ │ │ ├── __init__.py │ │ ├── default_models.yaml │ │ └── engine_cfg.yaml │ ├── inference_engine/ │ │ ├── __init__.py │ │ ├── base.py │ │ ├── onnxruntime/ │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ └── provider_config.py │ │ └── openvino/ │ │ ├── __init__.py │ │ ├── device_config.py │ │ └── main.py │ ├── main.py │ ├── model_handler/ │ │ ├── __init__.py │ │ ├── base/ │ │ │ └── __init__.py │ │ ├── doc_layout/ │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── post_process.py │ │ │ └── pre_process.py │ │ ├── main.py │ │ ├── pp/ │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── post_process.py │ │ │ └── pre_process.py │ │ ├── pp_doc_layout/ │ │ │ ├── __init__.py │ │ │ ├── main.py │ │ │ ├── post_process.py │ │ │ └── pre_process.py │ │ ├── utils.py │ │ └── yolov8/ │ │ ├── __init__.py │ │ ├── main.py │ │ ├── post_process.py │ │ └── pre_process.py │ ├── models/ │ │ ├── .gitkeep │ │ └── __init__.py │ └── utils/ │ ├── __init__.py │ ├── download_file.py │ ├── load_image.py │ ├── logger.py │ ├── typings.py │ ├── utils.py │ └── vis_res.py ├── requirements.txt ├── setup.py └── tests/ ├── test_engine.py └── test_main.py