Image-to-Text
Transformers
PyTorch
English
mplug_owl2
feature-extraction
image-quality-assessment
document-quality
mplug-owl2
vision-language
document-analysis
IQA
custom_code
Instructions to use mapo80/DeQA-Doc-Overall with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mapo80/DeQA-Doc-Overall with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "image-to-text" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("image-to-text", model="mapo80/DeQA-Doc-Overall", trust_remote_code=True)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mapo80/DeQA-Doc-Overall", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -185,20 +185,29 @@ print(f"Need review: {len(bad)} documents")
|
|
| 185 |
- Requires GPU with sufficient VRAM for efficient inference
|
| 186 |
- Score is subjective and based on training data distribution
|
| 187 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 188 |
## Citation
|
| 189 |
|
| 190 |
-
If you use this model in your research, please cite:
|
| 191 |
|
| 192 |
```bibtex
|
| 193 |
-
@
|
| 194 |
-
title={DeQA-Doc: Document Image Quality Assessment},
|
| 195 |
-
author={
|
| 196 |
-
|
| 197 |
-
|
| 198 |
-
url={https://huggingface.co/mapo80/DeQA-Doc-Overall}
|
| 199 |
}
|
| 200 |
```
|
| 201 |
|
|
|
|
|
|
|
| 202 |
## License
|
| 203 |
|
| 204 |
Apache 2.0
|
|
|
|
| 185 |
- Requires GPU with sufficient VRAM for efficient inference
|
| 186 |
- Score is subjective and based on training data distribution
|
| 187 |
|
| 188 |
+
## Credits & Attribution
|
| 189 |
+
|
| 190 |
+
This model is based on the **DeQA-Doc** project by Junjie Gao et al., which won the **Championship** in the VQualA 2025 DIQA (Document Image Quality Assessment) Challenge.
|
| 191 |
+
|
| 192 |
+
**Original Repository**: [https://github.com/Junjie-Gao19/DeQA-Doc](https://github.com/Junjie-Gao19/DeQA-Doc)
|
| 193 |
+
|
| 194 |
+
All credit for the research, training methodology, and model architecture goes to the original authors.
|
| 195 |
+
|
| 196 |
## Citation
|
| 197 |
|
| 198 |
+
If you use this model in your research, please cite the original paper:
|
| 199 |
|
| 200 |
```bibtex
|
| 201 |
+
@inproceedings{deqadoc,
|
| 202 |
+
title={{DeQA-Doc}: Adapting {DeQA-Score} to Document Image Quality Assessment},
|
| 203 |
+
author={Gao, Junjie and Liu, Runze and Peng, Yingzhe and Yang, Shujian and Zhang, Jin and Yang, Kai and You, Zhiyuan},
|
| 204 |
+
booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision Workshop},
|
| 205 |
+
year={2025},
|
|
|
|
| 206 |
}
|
| 207 |
```
|
| 208 |
|
| 209 |
+
**ArXiv**: [https://arxiv.org/abs/2507.12796](https://arxiv.org/abs/2507.12796)
|
| 210 |
+
|
| 211 |
## License
|
| 212 |
|
| 213 |
Apache 2.0
|