Views
No views yet
Non-commercial research use only. The ADOPD fine-tuned checkpoint weights in this repository are provided solely for non-commercial research. Commercial use of these checkpoint weights is not permitted. Users must also comply with every applicable upstream license and acceptable-use term; see USE_RESTRICTIONS.md.
ocr.grouped_blocks[].bbox_xyxytext.model.pt is a native Ultralytics checkpoint. It requires the pinned YOLOv12
source containing the A2C2f module; generic Ultralytics installations may not
deserialize it.1git clone https://github.com/SichenZhu/ADOPD2026.git
2cd ADOPD2026/release_code
3
4git clone https://github.com/sunsmarterjie/yolov12.git upstream/yolov12
5git -C upstream/yolov12 checkout 01a22c0603e0eaa6d9bd62120a391e744d92cea2
6
7python -m pip install -e model_zoo/common
8python -m pip install -e upstream/yolov12
9python -m pip install -e model_zoo/yolov12
10
11hf download adopd/YOLOv12-X-detection-ADOPD \
12 --local-dir checkpoints/yolov12-text
13
14adopd-yolo-infer \
15 --checkpoint checkpoints/yolov12-text/model.pt \
16 --image document.jpg \
17 --confidence 0.25 \
18 --output prediction.jsonadopd-yolo-prepare --task detect, then train
with adopd-yolo-train --task detect --data PREPARED_ROOT/detect.yaml. See
yolov12
for complete commands.1@misc{zhu2026thinkingwithanchors,
2 title={Thinking with Anchors: Grounded and Efficient Document Reasoning},
3 author={Sichen Zhu and Yuchen Zhu and Wenzhuo Xu and Jason Kuen and Wanrong Zhu and Jing Shi and Xuan Shen and Quanyi Wang and Yiwei Wang and Yujun Cai and Bing Shuai and Qin Zhang and Yongxin Chen and Shilong Liu and Molei Tao and Jiuxiang Gu},
4 year={2026}
5}1@inproceedings{gu2024adopd,
2 title={{ADOPD}: A Large-Scale Document Page Decomposition Dataset},
3 author={Jiuxiang Gu and Xiangxi Shi and Jason Kuen and Lu Qi and Ruiyi Zhang and Anqi Liu and Ani Nenkova and Tong Sun},
4 booktitle={The Twelfth International Conference on Learning Representations},
5 year={2024},
6 url={https://openreview.net/forum?id=x1ptaXpOYa}
7}