DeepSeek V4 Flash Vision Is Now Open Weight: MIT Release Lands on Hugging Face


DeepSeek-V4-Flash-Vision-Exp is no longer an API-only experiment. On August 31, 2026, DeepSeek published the model's official weights, tokenizer, prompt encoder, and reference inference code on Hugging Face under the MIT License.
That corrects an important piece of information that was true only ten days earlier. When the model launched on August 21, DeepSeek announced access through its API. The downloadable repository did not yet exist. Articles that described the model as closed or API-only at launch were accurate then, but they are outdated now.
Quick answer: DeepSeek-V4-Flash-Vision-Exp is now an openly downloadable, MIT-licensed multimodal model. Its official Hugging Face repository contains approximately 304.65 billion parameters, around 168GB of repository data, 48 safetensors weight shards, visual modules, prompt-encoding code, and a minimal PyTorch inference implementation.

| Item | Confirmed status |
|---|---|
| Model | DeepSeek-V4-Flash-Vision-Exp |
| Official repository | deepseek-ai/DeepSeek-V4-Flash-Vision-Exp |
| Repository created | August 31, 2026 |
| License | MIT |
| Access | Public and not gated when checked |
| Parameters | 304,646,824,126 reported by Hugging Face safetensors metadata |
| Repository size | Approximately 168GB |
| Weight format | 48 safetensors shards with mixed stored data types |
| Modalities | Text and image input |
| Vision components | Vision encoder and aligner included in the reference implementation |
| Model architecture | DeepSeek V4 MoE with DFlash, Hyper-Connections, and DSpark path |
| Official API model ID | deepseek-v4-flash-vision-exp |
| API launch | August 21, 2026 |
| Open-weights release | August 31, 2026 |
The official Hugging Face model page identifies the repository as MIT-licensed, lists the model at roughly 305B parameters, and describes it as DeepSeek's first experimental multimodal model in the V4 family.

The timeline explains why recent reports appear to contradict one another.
DeepSeek's August 21 announcement introduced deepseek-v4-flash-vision-exp on the DeepSeek API Platform.
At that stage, developers could call the experimental multimodal model through Chat Completions, Messages, and Responses. DeepSeek documented three image-input methods: inline base64 data, external image URLs, and reusable uploads through its Files API. The API supports JPEG, PNG, GIF, and WebP inputs, with the service detecting the actual file content rather than trusting the filename.
The launch announcement focused on the hosted model and its multimodal-agent performance. It did not provide official downloadable weights.
The Hugging Face API records the official repository's creation time as August 31, 2026. The repository is public, not gated, and tagged with an MIT license.
This second release changes the model's status in a meaningful way:
August 21
DeepSeek API access
↓
August 31
Official model weights
+ tokenizer
+ prompt encoding
+ vision encoder
+ aligner
+ reference inference code
+ MIT LicenseIt is now possible to download, inspect, modify, and self-host the released checkpoint subject to the license and the practical limits of the required compute.
The repository is more substantial than a small vision adapter attached to an unavailable base model.
DeepSeek's model card says it includes:
The visible model files are named from:
model-00001-of-00048.safetensorsthrough 48 shards, accompanied by model.safetensors.index.json.

The repository's reference implementation is deliberately described as readable, minimal inference code—not a production serving engine. That distinction should prevent two common misunderstandings: the code is real and useful for inspection, but it is not automatically an optimized replacement for vLLM, SGLang, TensorRT-LLM, or a managed inference platform.
Hugging Face's safetensors metadata reports a total of 304,646,824,126 parameters. The repository uses mixed stored data types, and DeepSeek's inference configuration identifies FP8 model storage with FP4 expert weights.
The model remains a large Mixture-of-Experts architecture. The published reference configuration includes:
| Architecture field | Released value |
|---|---|
| Transformer layers | 43 |
| Hidden dimension | 4,096 |
| Attention heads | 64 |
| Routed experts | 256 |
| Activated experts per token | 6 |
| Shared experts | 1 |
| Vision encoder layers | 32 |
| Vision dimension | 1,024 |
| Vision attention heads | 16 |
| Maximum vision tokens | 384 |
An MoE model does not activate every parameter for every token, so its compute per generated token is not equivalent to a dense 305B model. However, total checkpoint storage and memory placement still matter. The Hugging Face file browser showed a repository size of approximately 168GB at release time.
That leads to the most important deployment caveat:
Open weights do not mean consumer-hardware weights.
DeepSeek's example conversion and inference workflow uses tensor parallelism with MP=4. The documentation provides multi-node torchrun instructions as well. It does not claim that a single consumer GPU or a typical laptop can run the full model.
The reference runtime currently requires packages including PyTorch 2.10 or newer, Transformers newer than version 5, safetensors 0.7, TileLang, Pillow, and fast_hadamard_transform.
The documented process is:
torchrun.The official example uses four model-parallel ranks:
export HF_CKPT_PATH=/path/to/DeepSeek-V4-Flash-Vision-Exp-HF
export SAVE_PATH=/path/to/DeepSeek-V4-Flash-Vision-Exp-TP4
export MP=4
python convert.py \
--hf-ckpt-path "${HF_CKPT_PATH}" \
--save-path "${SAVE_PATH}" \
--n-experts 256 \
--model-parallel "${MP}" \
--expert-dtype fp4Interactive generation then uses the converted checkpoint:
torchrun --nproc-per-node "${MP}" generate.py \
--ckpt-path "${SAVE_PATH}" \
--config config.json \
--interactive \
--temperature 1.0These commands prove that DeepSeek supplied a self-hosting path. They do not establish a minimum VRAM requirement, production throughput, or compatibility with every serving engine.
DeepSeek positions the release as a multimodal agent model, not merely an image-captioning model.
The official model card reports:
| Benchmark | V4 Flash Vision Exp | V4 Flash 0731 | Opus 4.8 |
|---|---|---|---|
| Terminal Bench 2.1 | 83.9 | 82.7 | 85.0 |
| NL2Repo | 57.7 | 54.2 | 69.7 |
| Cybergym | 75.3 | 76.7 | 78.3 |
| DeepSWE | 59.3 | 54.4 | 58.0 |
| Toolathlon-Verified | 75.9 | 70.3 | 76.2 |
| DSBench-Hard | 63.6 | 59.6 | 71.7 |
| AutomationBench Public | 25.7 | 25.1 | 27.2 |
| ApexBench Pass@1 | 36.5 | 26.2 | 39.4 |
| Agents' Last Exam | 27.3 | 25.2 | 25.7 |
| Chartography | 64.3 | — | 65.0 |
| ZeroBench Pass@5 | 35.0 | — | 34.0 |
On DeepSeek's reported numbers, the vision model exceeds Opus 4.8 on DeepSWE, Agents' Last Exam, and ZeroBench Pass@5, while remaining behind it on several other tests.
These results require careful wording. They are vendor-published benchmark results, not independent confirmation that DeepSeek V4 Flash Vision is better than Opus 4.8 across real workloads.
DeepSeek also discloses part of its evaluation setup. For text-agent benchmarks, its models used DeepSeek Harness in minimal mode, maximum reasoning effort, temperature=1.0, and top_p=0.95. DeepSeek-V4-Flash-0731 ignored multimodal elements in ApexBench and Agents' Last Exam, which helps explain the larger vision-model gain on those evaluations.
Many software-development tasks are no longer text-only. An agent may need to understand:
Text-only coding models need a separate vision tool or another model to translate those images into text. A native multimodal model can keep visual context inside the same reasoning loop.
That is why DeepSeek compares the model on agent and software-engineering evaluations rather than only visual question answering. The release is particularly relevant to terminal agents, browser agents, and software-development harnesses that already accept image attachments.
DeepSeek's own DSHPlugin ecosystem guide on AI IDE List explains the surrounding harness and plugin architecture. You can also compare the model's potential role with the extensible Pi coding agent, or examine how open models are packaged and run in our GPT-OSS hardware and local setup guide.
Developers now have two distinct routes.
The hosted API is the practical option for most users today. DeepSeek documents:
It avoids downloading a roughly 168GB repository and operating a large tensor-parallel inference stack.
The Hugging Face release offers control over:
That control comes with hardware, deployment, and optimization work.
When checked on release day, Hugging Face showed no hosted Inference Provider deployment for the model. The DeepSeek API remained the immediate managed route.
The official release does not yet establish broad plug-and-play support across those runtimes.
The repository provides DeepSeek's minimal PyTorch implementation and uses custom elements including its vision encoder, aligner, DFlash path, MoE implementation, Hyper-Connections, DSpark path, packed expert weights, and prompt encoding.
That means compatibility requires more than recognizing the model name. A serving engine must correctly implement the architecture, multimodal input format, weight layout, vision preprocessing, and generation behavior.
The safe release-day answer is:
| Runtime | Confirmed by the official model release? |
|---|---|
| DeepSeek reference PyTorch runtime | Yes |
| DeepSeek hosted API | Yes |
| Hugging Face hosted inference provider | Not available when checked |
| vLLM | Not confirmed for this vision checkpoint in the official model card |
| SGLang | Not confirmed in the official model card |
| Ollama | No official ready-to-run package confirmed |
Community support may arrive quickly, but users should verify an implementation rather than assuming compatibility from support for the text-only V4 Flash model.
“Open-source model” can be a contested term because model weights, training data, training code, and inference code are different artifacts.
For this release, the precise confirmed statement is strong:
DeepSeek released the model weights and reference inference repository under the MIT License.
The model is not gated, the checkpoint is downloadable, and the repository includes much more than an API client. Calling it an open-weight model with MIT-licensed inference code is therefore both accurate and specific.
The release does not, by itself, mean that DeepSeek published every training dataset, every training-stage implementation, or a complete recipe to reproduce the model from scratch.
Before the weight release, developers could:
After the weight release, developers can also:
That is a material change, not a documentation update.
Yes. DeepSeek published the official checkpoint on Hugging Face on August 31, 2026. The repository is public, not gated, and MIT-licensed.
Hugging Face reports 304,646,824,126 parameters and approximately 168GB of repository storage at release time. The checkpoint is split across 48 safetensors files.
Yes, in the sense that DeepSeek provides downloadable weights and a local PyTorch inference implementation. The official example uses four-way tensor parallelism. DeepSeek has not described it as a consumer-GPU model.
The official release does not provide a validated single-GPU configuration. Given the checkpoint size, users should not assume ordinary desktop-GPU compatibility.
No official Ollama package is identified in the release-day model card. Third-party conversions should be evaluated separately for architecture support and correctness.
Yes. DeepSeek supports base64 images, external URLs, and Files API references in compatible endpoints.
DeepSeek reports higher results on a few listed benchmarks and lower results on others. Those are official vendor results, not a general proof that one model is better across real tasks.
The most important DeepSeek V4 Flash Vision news on August 31 is not a new benchmark number. It is the transition from a hosted experimental endpoint to an inspectable and self-hostable model release.
API-only experiment
↓
MIT-licensed weights
+ vision modules
+ prompt encoder
+ reference inference codeFor most developers, the DeepSeek API will remain easier than operating a 305B-parameter MoE checkpoint. For model-runtime teams, researchers, private-infrastructure operators, and agent-framework developers, the open weights create a much larger opportunity.
The information to update is simple: DeepSeek-V4-Flash-Vision-Exp was API-only on August 21. It has official downloadable weights as of August 31, 2026.
Last verified: August 31, 2026. Repository size, runtime support, hosted providers, and community conversions can change quickly.
More articles connected to the same themes, protocols, and tools.
Browse entries that are adjacent to the topics covered in this article.