Views
No views yet
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 information1# TODO: Add your inference code here
2from transformers import AutoModel, AutoTokenizer
3
4model = AutoModel.from_pretrained("pkulium/easy_deepocr", trust_remote_code=True)
5tokenizer = AutoTokenizer.from_pretrained("pkulium/easy_deepocr")
6
7# Example inference
8# image = ...
9# text = ...1@misc{easy_deepocr,
2 author = {Ming Liu},
3 title = {Easy DeepOCR - VILA-Qwen2-VL-8B},
4 year = {2025},
5 publisher = {HuggingFace},
6 url = {https://huggingface.co/pkulium/easy_deepocr}
7}