# PDF文档识别 **Repository Path**: ibdp/pdf-document-recognition ## Basic Information - **Project Name**: PDF文档识别 - **Description**: 基于PDF-Extract-Kit的文档识别-领域版 - **Primary Language**: Unknown - **License**: AGPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2026-06-11 - **Last Updated**: 2026-08-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## PDF-Extract-Kit-1.0 Model Repository This is the model repository corresponding to version 1.0 of PDF-Extract-Kit. For usage, please refer to: - [PDF-Extract-Kit-1.0](https://github.com/opendatalab/PDF-Extract-Kit) - [MinerU](https://github.com/opendatalab/MinerU) ### SDK Download ```bash # First, install the huggingface library using pip: pip install huggingface_hub ``` ```python # Use the following Python code to download the model using the huggingface SDK: from huggingface_hub import snapshot_download snapshot_download(repo_id='opendatalab/pdf-extract-kit-1.0', local_dir='./', max_workers=20) ``` ### Git Download Alternatively, you can use Git to clone the model repository from ModelScope: ```bash git lfs install git clone https://huggingface.co/opendatalab/PDF-Extract-Kit-1.0 ``` ### REST API Service A FastAPI-based RESTful API subproject (`project/pdf_extract_api/`) is available for document content recognition via HTTP endpoints. It supports PDF/PNG upload, async processing, and returns structured Markdown output with embedded images and formulas. ```bash pip install -r project/pdf_extract_api/requirements.txt python project/pdf_extract_api/main.py ``` See [`project/pdf_extract_api/README.md`](project/pdf_extract_api/README.md) for details. --- license: agpl-3.0 ---