A vision-language model fine-tuned for OCR tasks, based on VILA architecture with Qwen2-VL-8B as the language backbone.
This model combines:
easy_deepocr/
├── config.json # Model configuration
├── llm/ # Qwen2-VL-8B language model weights
├── mm_projector/ # Multimodal projection layer
├── sam_clip_ckpt/ # SAM and CLIP vision encoder weights
└── trainer_state.json # Training state information
# TODO: Add your inference code here
from transformers import AutoModel, AutoTokenizer
model = AutoModel.from_pretrained("pkulium/easy_deepocr", trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained("pkulium/easy_deepocr")
# Example inference
# image = ...
# text = ...
This model is designed for:
If you use this model, please cite:
@misc{easy_deepocr,
author = {Ming Liu},
title = {Easy DeepOCR - VILA-Qwen2-VL-8B},
year = {2025},
publisher = {HuggingFace},
url = {https://huggingface.co/pkulium/easy_deepocr}
}
3 commits
A vision-language model fine-tuned for OCR tasks, based on VILA architecture with Qwen2-VL-8B as the language backbone.
This model combines:
easy_deepocr/
├── config.json # Model configuration
├── llm/ # Qwen2-VL-8B language model weights
├── mm_projector/ # Multimodal projection layer
├── sam_clip_ckpt/ # SAM and CLIP vision encoder weights
└── trainer_state.json # Training state information
# TODO: Add your inference code here
from transformers import AutoModel, AutoTokenizer
model = AutoModel.from_pretrained("pkulium/easy_deepocr", trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained("pkulium/easy_deepocr")
# Example inference
# image = ...
# text = ...
This model is designed for:
If you use this model, please cite:
@misc{easy_deepocr,
author = {Ming Liu},
title = {Easy DeepOCR - VILA-Qwen2-VL-8B},
year = {2025},
publisher = {HuggingFace},
url = {https://huggingface.co/pkulium/easy_deepocr}
}
3 commits