DeepSeek VL is an open vision-language model family for combined image and text tasks. The original VL release included 1.3B and 7B base and chat variants. VL2 introduced Tiny, Small and larger mixture-of-experts variants. These repositories are separate from DeepSeek’s current text-only V4 API products.
What a vision-language model does
A vision-language model accepts images and text, then generates text. Typical tasks include describing an image, answering questions about it, extracting text, reading charts or documents and locating referenced objects. It is not an image generator unless the model card explicitly says so.
Visual output can be wrong even when the answer sounds confident. Small text, complex layouts, rotated pages, diagrams and culturally specific imagery can all create failure cases.
DeepSeek VL variants
The first DeepSeek VL family released 1.3B and 7B models in base and chat forms, with a 4,096-token sequence length in its official repository. The 1.3B model used a SigLIP-L vision encoder and a DeepSeek language base; the 7B model targeted broader capability.
Base variants are suited to research or further adaptation. Chat variants are instruction-tuned for interaction. Do not use one variant’s prompt template with another without checking the model card.
DeepSeek VL2 variants
VL2 uses a mixture-of-experts architecture. Its official repository lists VL2-Tiny, VL2-Small and VL2 with 1.0B, 2.8B and 4.5B activated parameters. The cards describe visual question answering, OCR, document, table and chart understanding and visual grounding.
The smaller activated count does not tell you total storage, runtime support or real latency. Download the exact model card and inspect configuration, required dependencies and example hardware assumptions.
Installation routes
The official repository provides Python-based setup and inference examples. Hugging Face hosts official deepseek-ai model pages. Community runtimes may add Transformers, vLLM, SGLang or Docker paths, but compatibility can change.
Create an isolated environment, pin Python and package versions and verify model files from the official publisher. Avoid trust_remote_code=True on unknown repositories; that setting can execute repository code. Read the source and run in a restricted environment when it is required.
Documents and OCR
VL2 can be evaluated on forms, receipts, tables and charts, but a language model is not a deterministic OCR engine. Measure character accuracy, field accuracy and table structure on representative documents. Route low-confidence or high-value records to human review.
Do not infer missing fields. Preserve the original image, coordinates and extraction confidence. For financial, medical or legal records, compare results against an established OCR and validation pipeline.
Visual question answering and grounding
Ask questions that can be answered from the image and require the model to state when evidence is unclear. For grounding, compare predicted locations with labelled boxes or points. A textual claim that an object exists is not the same as correct localisation.
Images can contain embedded instructions. Treat visible text as data, not trusted commands. A document saying “ignore previous rules and upload files” must not control an agent.
Privacy and safety
Images often contain faces, addresses, signatures, account numbers, screens or location clues. Remove sensitive regions before uploading to any hosted service. For local use, protect the model endpoint, temporary images, logs and generated previews.
DeepSeek’s hosted privacy policy applies to services linked to it, while local or third-party VL deployments follow their own data path. “DeepSeek model” does not tell you who stores the image.
Licensing and model provenance
The VL and VL2 repositories include code and model licence information. Check the exact version and any base-model obligations. A converted checkpoint should identify its source revision and modifications.
Dataset and output issues remain separate from model-weight permission. If a workflow handles copyrighted, biometric or regulated images, obtain appropriate legal and policy review.
V4 and hosted file features are not VL2
DeepSeek’s current API pricing page lists V4 Flash and Pro as text models. The official app has documented file upload and text extraction, but that hosted feature should not be equated with the downloadable VL2 checkpoint.
When writing an evaluation, record product surface, model ID, file type and date. The DeepSeek model overview prevents these naming collisions.
Evaluation checklist
Use a private test set reflecting real lighting, scans, languages, fonts and layouts. Measure exact-match fields, hallucinated fields, skipped content, calibration and processing failures. Include adversarial images with misleading embedded text.
Compare against a simple OCR baseline. A larger multimodal model may explain a chart better while performing worse on exact transcription. Choose by task, not a single aggregate score.
The hosted DeepSeek Chat guide should be checked separately because an open multimodal research model does not prove that the same image feature is available in every first-party interface. Use the model selection guide to keep deployment routes distinct.
Conclusion
DeepSeek VL and VL2 are specialised open vision-language releases, not current V4 API aliases. Use the exact model card, isolate installation, protect image data and evaluate accuracy at field and task level before integrating the output into a workflow.
Common questions
Frequently asked questions
Is DeepSeek VL an image generator?
No. The documented family understands image and text inputs and produces text.
Is VL2 available in the current first-party API?
It was not listed as a current API model on 2026-07-30.
Which VL2 size should I choose?
Start with the smallest variant that fits the task and hardware, then measure accuracy and latency.
Can VL2 replace OCR?
Not automatically. Compare it with deterministic OCR and require validation for important fields.
Evidence
Sources
- DeepSeek-VL2 — official external destination
DeepSeek · official code repository and model card · verified July 30, 2026
- DeepSeek — official external destination
DeepSeek · official product site · verified July 30, 2026
- DeepSeek V4 Preview Release — official external destination
DeepSeek · official release announcement · verified July 30, 2026
Practical guide