Downloads · 30 days
0
AlexTransformer/PP-DocLayoutV3-onnx
PP-DocLayoutV3-onnx is a object detection model from AlexTransformer. Use it when you need objects located in an image. It is set up for onnxruntime. The card lists the license as apache-2.0.
This repository hosts the verified PP-DocLayoutV3 ONNX layout model used by the open-source project AIwork4me/PaddleOCR-VL-ROCm.
Downloads · 30 days
0
Access
Public
Updated May 31, 2026
Repo size
132 MB
Likes
1
Public
Click a slice to open those files.
.onnx132 MB · 100%
From the Hugging Face model README
This repository hosts the verified PP-DocLayoutV3 ONNX layout model used by the open-source project AIwork4me/PaddleOCR-VL-ROCm.
本仓库提供已经验证过的 PP-DocLayoutV3-onnx 模型文件,供 PaddleOCR-VL-ROCm 直接下载使用。
用户不需要再安装 Paddle、Paddle2ONNX,也不需要自己从 Paddle 模型导出 ONNX。克隆开源项目后,只需运行下载脚本即可准备 layout 模型。
inference.onnx: PP-DocLayoutV3 ONNX layout detection model.inference.yml: model configuration used by the ONNXRuntime pipeline.Verified checksums:
| File | SHA256 |
|---|---|
inference.onnx | BC307C102A52A10EEDF20F36A03DF384B8EB2224BEB2E5E716C581901A8F0B61 |
inference.yml | 506FCFAC13B3B546AE40D7886B44126420F392ADB694E3F8BB6A6286A1F90FDC |
Recommended runtime project:
https://github.com/AIwork4me/PaddleOCR-VL-ROCm
PaddleOCR-VL-ROCm is a lightweight No-Paddle inference implementation for PaddleOCR-VL-style document parsing:
PP-DocLayoutV3-onnx model.This model repository removes the most painful setup step for users.
Before this model repository, users often had to:
With this repository, users can directly download the verified ONNX model used by PaddleOCR-VL-ROCm:
pip install -e .[download]
python scripts/download_ppdoclayoutv3_onnx.py
The script downloads from this Hugging Face repository by default and prepares:
models/PP-DocLayoutV3-onnx/
inference.onnx
inference.yml
This gives users a simpler path:
The ONNXRuntime layout path used by PaddleOCR-VL-ROCm has been validated against the Paddle native pipeline on 1355 images.
| Item | Result |
|---|---|
| Full-run success | 1355 / 1355 |
| Payload alignment | 1355 / 1355 |
| Layout, crop, request order, request payload | Strictly aligned |
This means the open-source runtime can use this ONNX layout model as a practical replacement for the Paddle layout stage in the validated inference path.
git clone https://github.com/AIwork4me/PaddleOCR-VL-ROCm.git
cd PaddleOCR-VL-ROCm
python -m venv .venv
.\.venv\Scripts\Activate.ps1
pip install -e .[download]
python scripts/download_ppdoclayoutv3_onnx.py
Then run inference with your OpenAI-compatible ROCm VLM endpoint:
paddleocr-vl-rocm `
--input examples/input/handwrite_ch_demo.png `
--output outputs/smoke `
--layout-model models/PP-DocLayoutV3-onnx `
--server-url http://127.0.0.1:8000/v1 `
--api-model-name PaddleOCR-VL-1.5-0.9B `
--vlm-backend vllm-server
Expected output files:
outputs/smoke/handwrite_ch_demo_res.json
outputs/smoke/handwrite_ch_demo.md
from paddleocr_vl_rocm import PaddleOCRVLROCm
pipeline = PaddleOCRVLROCm(
layout_model_dir="models/PP-DocLayoutV3-onnx",
vlm_server_url="http://127.0.0.1:8000/v1",
api_model_name="PaddleOCR-VL-1.5-0.9B",
)
result = pipeline.predict("examples/input/handwrite_ch_demo.png")
result.save_to_json("outputs")
result.save_to_markdown("outputs", pretty=False)
This repository only contains the layout model files for the ONNXRuntime stage. It does not include PaddleOCR-VL VLM weights. For the complete inference pipeline, use AIwork4me/PaddleOCR-VL-ROCm together with a ROCm-backed OpenAI-compatible VLM service.
这个 Hugging Face 仓库的作用是给 PaddleOCR-VL-ROCm 提供可直接下载的、已验证的 PP-DocLayoutV3-onnx layout 模型。用户克隆 GitHub 项目后,只需要运行下载脚本即可准备模型,不需要安装 Paddle2ONNX,也不需要自己转换模型。
开源项目地址:AIwork4me/PaddleOCR-VL-ROCm
主要好处:
1355 / 1355。