Buckets:
37.5 GB
105 files
Updated 3 days ago
Ctrl+K
| Name | Size | Uploaded | Xet hash |
|---|---|---|---|
| .ipynb_checkpoints | 1 items | ||
| Lance_3B | 6 items | ||
| Lance_3B_Video | 7 items | ||
| Qwen2.5-VL-ViT | 2 items | ||
| assets | 72 items | ||
| .gitattributes | 1.78 kB xet | 167a9bae | |
| LICENSE | 1.08 kB xet | acdf7ee0 | |
| README.md | 6.31 kB xet | d66fe58b | |
| README_zh.md | 33.3 kB xet | eb14778d | |
| Wan2.2_VAE.pth | 2.82 GB xet | 5bc61dd3 | |
| config.json | 2.67 kB xet | 31bb51dc | |
| configuration_deepseek_v2.py | 10.6 kB xet | 66395c83 | |
| conversation.py | 9.25 kB xet | af60611c | |
| deepencoder.py | 38 kB xet | a0f12240 | |
| model-00001-of-000001.safetensors | 6.67 GB xet | 3a1a2b0a | |
| model.safetensors.index.json | 247 kB xet | 064c9511 | |
| modeling_deepseekocr.py | 40.1 kB xet | efa91307 | |
| modeling_deepseekv2.py | 82.2 kB xet | 202e98c3 | |
| processor_config.json | 460 Bytes xet | d23e58f0 | |
| special_tokens_map.json | 801 Bytes xet | 871f3eb0 | |
| tokenizer.json | 9.98 MB xet | 035a1820 | |
| tokenizer_config.json | 166 kB xet | 7a710fba |
π Github | π₯ Model Download | π Paper Link | π Arxiv Paper Link |
DeepSeek-OCR: Contexts Optical Compression
Explore the boundaries of visual-text compression.
Usage
Inference using Huggingface transformers on NVIDIA GPUs. Requirements tested on python 3.12.9 + CUDA11.8οΌ
torch==2.6.0
transformers==4.46.3
tokenizers==0.20.3
einops
addict
easydict
pip install flash-attn==2.7.3 --no-build-isolation
from transformers import AutoModel, AutoTokenizer
import torch
import os
os.environ["CUDA_VISIBLE_DEVICES"] = '0'
model_name = 'deepseek-ai/DeepSeek-OCR'
tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModel.from_pretrained(model_name, _attn_implementation='flash_attention_2', trust_remote_code=True, use_safetensors=True)
model = model.eval().cuda().to(torch.bfloat16)
# prompt = "<image>\nFree OCR. "
prompt = "<image>\n<|grounding|>Convert the document to markdown. "
image_file = 'your_image.jpg'
output_path = 'your/output/dir'
# infer(self, tokenizer, prompt='', image_file='', output_path = ' ', base_size = 1024, image_size = 640, crop_mode = True, test_compress = False, save_results = False):
# Tiny: base_size = 512, image_size = 512, crop_mode = False
# Small: base_size = 640, image_size = 640, crop_mode = False
# Base: base_size = 1024, image_size = 1024, crop_mode = False
# Large: base_size = 1280, image_size = 1280, crop_mode = False
# Gundam: base_size = 1024, image_size = 640, crop_mode = True
res = model.infer(tokenizer, prompt=prompt, image_file=image_file, output_path = output_path, base_size = 1024, image_size = 640, crop_mode=True, save_results = True, test_compress = True)
vLLM
Refer to πGitHub for guidance on model inference acceleration and PDF processing, etc.
[2025/10/23] πππ DeepSeek-OCR is now officially supported in upstream vLLM.
uv venv
source .venv/bin/activate
# Until v0.11.1 release, you need to install vLLM from nightly build
uv pip install -U vllm --pre --extra-index-url https://wheels.vllm.ai/nightly
from vllm import LLM, SamplingParams
from vllm.model_executor.models.deepseek_ocr import NGramPerReqLogitsProcessor
from PIL import Image
# Create model instance
llm = LLM(
model="deepseek-ai/DeepSeek-OCR",
enable_prefix_caching=False,
mm_processor_cache_gb=0,
logits_processors=[NGramPerReqLogitsProcessor]
)
# Prepare batched input with your image file
image_1 = Image.open("path/to/your/image_1.png").convert("RGB")
image_2 = Image.open("path/to/your/image_2.png").convert("RGB")
prompt = "<image>\nFree OCR."
model_input = [
{
"prompt": prompt,
"multi_modal_data": {"image": image_1}
},
{
"prompt": prompt,
"multi_modal_data": {"image": image_2}
}
]
sampling_param = SamplingParams(
temperature=0.0,
max_tokens=8192,
# ngram logit processor args
extra_args=dict(
ngram_size=30,
window_size=90,
whitelist_token_ids={128821, 128822}, # whitelist: <td>, </td>
),
skip_special_tokens=False,
)
# Generate output
model_outputs = llm.generate(model_input, sampling_param)
# Print output
for output in model_outputs:
print(output.outputs[0].text)
Visualizations
![]() |
![]() |
![]() |
![]() |
Acknowledgement
We would like to thank Vary, GOT-OCR2.0, MinerU, PaddleOCR, OneChart, Slow Perception for their valuable models and ideas.
We also appreciate the benchmarks: Fox, OminiDocBench.
Citation
@article{wei2025deepseek,
title={DeepSeek-OCR: Contexts Optical Compression},
author={Wei, Haoran and Sun, Yaofeng and Li, Yukun},
journal={arXiv preprint arXiv:2510.18234},
year={2025}
}
- Total size
- 37.5 GB
- Files
- 105
- Last updated
- Jun 12
- Pre-warmed CDN
- US EU US EU



