Open Source
Open Source

DeepSeek-V4-Flash-Vision-Exp Open-Sourced: MIT Vision Build

DeepSeek-V4-Flash-Vision-Exp is an experimental vision build of V4-Flash. Verification correction: it is not on GitHub (the api.github.com repo returns HTTP 404); the open-source home is Hugging Face (deepseek-ai/DeepSeek-V4-Flash-Vision-Exp). IThome actually reported it on 2026/8/31 19:35, not 9/1. MIT license (commercial use allowed), image input for JPEG/PNG/GIF/WebP, vision "near Claude Opus 4.8" and plain-text parity with V4-Flash — all from official API docs and media. Params ~305B and 1M context are media-reported 【Unconfirmed】. This resource gives landing guidance: self-host via the HF model card, light use via the official API, and smoke-test with real business images first. Confirmed vs unconfirmed items are split in tables.

Published September 1, 202610 min read
<!-- deepseek-v4-flash-vision-exp-resource | open-source | DeepSeek-V4-Flash-Vision-Exp Open-Sourced: MIT Vision Build -->

On August 31, 2026 at 19:35, ITHome reported a story easy to miss but worth remembering: DeepSeek released DeepSeek-V4-Flash-Vision-Exp, an experimental vision variant of DeepSeek-V4-Flash. It is not a paper or a roadmap placeholder. It is an open-weight model you can obtain now, under the MIT license, with weights open and commercial use permitted. This is a practical "how to get and use it" resource post: where it lives, what it does, what is confirmed versus media-reported, the paths to obtain and call it, how it compares with closed vision models, and a few traps to avoid. For text-only V4-Flash comparison see the DeepSeek-V4-Flash hotspot coverage; for the broader flagship coding and reasoning picture see the flagship coding and reasoning review.


1. The short version: what it is, where it lives, whether it is open

Start with the facts that matter, so readers skip the detour.

First, it is a vision variant, not V4-Flash itself. DeepSeek-V4-Flash is text-only; DeepSeek-V4-Flash-Vision-Exp adds image input. The words "Vision" and "Exp" (Experimental) both matter and each gets a section.

Second, it is genuinely open-weight and MIT. MIT is among the most permissive common licenses: download the weights, deploy, modify, and use commercially, keeping only the license notice. For teams wiring it into a product, you avoid negotiating a commercial fee up front.

Third, it is not on GitHub. This runs against intuition. DeepSeek models have appeared on GitHub first before, but this time the GitHub repository API returns HTTP 404 for DeepSeek-V4-Flash-Vision-Exp, so the repository does not exist there. The correct location is the Hugging Face model card deepseek-ai/DeepSeek-V4-Flash-Vision-Exp.

Fourth, the boundaries are clear: image input, accepting JPEG, PNG, GIF, and WebP; vision described as "close to Claude Opus 4.8" (official API docs and media wording, not an independent score); plain text matches V4-Flash. The roughly 305B parameters and roughly 1M context are media-reported and not yet confirmed by DeepSeek, which gets its own section.

Separating confirmed from media-reported is the key habit when reading this post:

ItemStatusSource
Model identityConfirmed: vision variant of V4-FlashHugging Face card / ITHome
HostingConfirmed: Hugging Face, not GitHubapi.github.com 404 + ITHome
LicenseConfirmed: MIT, commercial allowedHugging Face card
Image formatsConfirmed: JPEG / PNG / GIF / WebPOfficial API docs
Vision levelMedia wording: close to Claude Opus 4.8Official API docs / media
Plain textConfirmed: on par with V4-FlashOfficial wording
ParamsUnconfirmed: ~305B, media-reportedMedia, not DeepSeek
ContextUnconfirmed: ~1M, media-reportedMedia, not DeepSeek

2. Key correction: skip GitHub, it is on Hugging Face

This section saves time, because the wrong expectation wastes effort.

The first reflex when hunting a new DeepSeek model is GitHub, searching deepseek-ai. For this Vision-Exp that fails. We checked the public GitHub repository API, and api.github.com/repos/deepseek-ai/DeepSeek-V4-Flash-Vision-Exp returns HTTP 404, meaning no repository exists there. If you scrolled GitHub and found nothing, you did not search wrong; it is simply not there.

The real address is Hugging Face: deepseek-ai/DeepSeek-V4-Flash-Vision-Exp. The model card provides weights, usage notes, and license. The card URL typically looks like https://huggingface.co/deepseek-ai/DeepSeek-V4-Flash-Vision-Exp; rely on what the page shows, since this post does not lock a URL that may change.

Why not GitHub this time? A reasonable guess is DeepSeek shifted primary weight distribution to Hugging Face, closer to the inference ecosystem (transformers, vLLM, and engines read that format directly). But that is a guess, not confirmed. For users the conclusion is simple: go to Hugging Face, do not burn time on GitHub.

Get the time right too. ITHome reported at 19:35 on August 31, 2026, not September 1 as some assumed. Anchor on the evening of August 31 when reconciling a timeline.


3. Capability boundaries: image input and "close to Claude Opus 4.8"

Three blocks: input, formats, quality.

Input: it accepts images and handles multimodal picture-plus-text requests. That covers image question answering, content understanding, and image-based reasoning, not text alone. For teams feeding visual signals into a workflow, multimodality is qualitative, not a quantitative add-on.

Formats: explicitly JPEG, PNG, GIF, WebP. GIF hints at some tolerance for animated sequences (whether it samples frames or treats them as multiple is unconfirmed, per the card and docs). JPEG and PNG are covered; WebP, common on the web, is covered too, sparing a transcoding step.

Quality: the most quoted claim is vision "close to Claude Opus 4.8." The wording must be precise: this is a qualitative description from official API docs and media, not a benchmark with control groups, and not an independent third-party number. The right reading is that it pushes open-weight vision into the near-front-line band, a magnitude signal rather than a score for a selection document. Before a serious comparison, run a small evaluation on your own images so the claim becomes concrete on tasks you care about.

Plain text: official wording is "on par with V4-Flash." Adding vision did not cost text ability, at least in that wording. If your scenario is mostly text with occasional images, one model covers both, avoiding routing between a text and a vision model.


4. Parameters and context: why "unconfirmed" is marked

The roughly 305B parameters and roughly 1M context are marked unconfirmed throughout. This is not theatrical caution; it decides whether you can deploy and how many GPUs you need.

Why unconfirmed? These two numbers appear only in media reports; DeepSeek has not confirmed them in the card or an announcement. Media wording gives magnitude, but it is not an official spec. Writing it into a procurement or deployment plan as settled is how plans distort: a 305B-class model means substantial memory and a parallel strategy, and if the real number differs, your capacity plan breaks.

The 1M context is the same. Attractive, implying long documents or long sessions, but media wording until confirmed. Treat it as an upper-bound reference, not a verified capability.

Advice: keep "about 305B, about 1M" as magnitude awareness, but do not base hard hardware decisions on it, and do not write it as a confirmed spec. Backfill once DeepSeek confirms.


5. How to get and call it: two paths

Two main paths: self-hosting from Hugging Face, and the official DeepSeek API.

Path one, self-hosting. Pull weights from the card and load with a compatible framework. Minimal sketch; exact names follow the card and framework docs:

python
from transformers import AutoModelForCausalLM, AutoProcessor

model = AutoModelForCausalLM.from_pretrained(
    "deepseek-ai/DeepSeek-V4-Flash-Vision-Exp",
    trust_remote_code=True,
)
processor = AutoProcessor.from_pretrained(
    "deepseek-ai/DeepSeek-V4-Flash-Vision-Exp",
)
# Feed image and text together; exact call shape follows the card

Switches like trust_remote_code and image preprocessing follow the card. The snippet is a shape sketch, not verbatim.

Path two, official API. If you will not host, the official API is easier: no GPUs, pay per call, and the docs are themselves a source of the "close to Opus 4.8" claim. Endpoints, auth, and request shape follow the official docs; this post does not lock a changing address.

Choosing: self-hosting suits data residency, latency, or privatization needs, at the cost of hardware and ops. The API suits fast validation or low volume, at the cost of data leaving your network and API quotas. Either way, smoke-test a small batch of real images before scaling.

For text-only V4-Flash comparison see the DeepSeek-V4-Flash hotspot coverage; for the flagship coding and reasoning picture see the flagship coding and reasoning review.


6. Comparison with closed models, and the weight of "Exp"

In the vision map its position is clear: open weights, MIT commercial use, vision near front-line closed models. Stacked, those three are why it matters.

Versus closed models like Claude Opus 4.8, the difference is not "which is stronger" but control: a closed model you only call, not modify, and commercial use often means negotiating license and pricing; this model gives weights, so you deploy, fine-tune, and embed privately. The cost is carrying deployment yourself, and "close" is not "equal" until harder official and independent numbers appear.

Versus other open vision models, its edge is frontier-adjacent quality plus MIT leniency. Many open vision models shortchange either quality or license; this gives both, friendly to commercial product teams.

Finally, the "Exp" weight. It is not decoration. Before a full V4-Vision, DeepSeek shipped this variant under "Exp," most reasonably to probe with community feedback and real load how vision fits V4, paving the way for a complete release. Two implications: it may iterate or be superseded, so do not lock it as final; and now is a good window to experiment and build your own evaluations, because once the official version lands, your comparison data will be valuable.


7. Action checklist

ActionRationalePriority
Get from Hugging Face, not GitHubGitHub repo 404High
Confirm MIT meets commercial complianceHugging Face cardHigh
Smoke-test real business images"Close to Opus 4.8" is wording, not a scoreHigh
Estimate hardware at ~305B, wait for official numbers before buyingParams unconfirmedMedium
Pick self-host vs API on residency and latencyTwo-path trade-offMedium
Re-test "close to Opus 4.8" on your tasksMedia wording, not verifiedMedium
Watch the Exp label, leave migration roomExperimental, may iterateLow

References

  • Hugging Face model card deepseek-ai/DeepSeek-V4-Flash-Vision-Exp — model identity (vision variant of V4-Flash), MIT license and commercial permission, JPEG/PNG/GIF/WebP support, weights and notes. Exact URL follows the actual page.
  • GitHub repository API api.github.com/repos/deepseek-ai/DeepSeek-V4-Flash-Vision-Exp returns HTTP 404 — proving it is not on GitHub, cited to steer readers away.
  • ITHome report at 19:35 on August 31, 2026 — report time and basics cross-checked; note August 31, not September 1.
  • DeepSeek official API documentation — source of "vision close to Claude Opus 4.8," the statement that plain text matches V4-Flash, and format and call notes. Exact URL follows the official source.
  • Media reports of ~305B params and ~1M context — marked unconfirmed, magnitude reference only, not DeepSeek-confirmed.
  • Beyond the above, discussion of the Exp label, the two-path trade-off, and closed-model comparison is editorial analysis, flagged in the body, not official sources.

Frequently Asked Questions

Q1: Where can I download or call this model? A1: Do not look on GitHub — the repository API returns HTTP 404, so it is not there. The correct location is the Hugging Face model card deepseek-ai/DeepSeek-V4-Flash-Vision-Exp, where you download weights and self-host; or call it through the official DeepSeek API. Exact addresses and parameters follow the card and official docs.

Q2: How is it related to DeepSeek-V4-Flash? A2: V4-Flash is text-only; Vision-Exp is a vision variant adding image input. "Vision" and "Exp" mean vision and experimental. Official wording says plain text matches V4-Flash, so adding vision did not cost text ability, and one model covers both text and image tasks.

Q3: Which image formats are supported? A3: JPEG, PNG, GIF, and WebP. GIF hints at tolerance for animated sequences, but whether it samples frames or treats them as multiple is unconfirmed per the card and docs. JPEG and PNG are covered; WebP too, sparing transcoding.

Q4: How does its vision compare to Claude Opus 4.8? A4: The claim is "close to Claude Opus 4.8," but that is qualitative wording from official docs and media, not a benchmark with control groups or an independent number. The right reading is that it pushes open-weight vision into the near-front-line band, a magnitude signal, not a precise score. Run a small evaluation on your own images before a serious comparison.

Q5: What are the params and context, and why "unconfirmed"? A5: Media says ~305B params and ~1M context, but DeepSeek has not confirmed these in the card or announcement, so this post marks them unconfirmed. The reason is they decide memory and parallel strategy for deployment; writing an unconfirmed number as settled distorts plans. Treat them as magnitude awareness and backfill once DeepSeek confirms.

This article is AI-assisted and human-edited. Last updated: 2026-09-01

FAQ

Where can I download or call this model?
Do not look on GitHub — the repository API returns HTTP 404, so it is not there. The correct location is the Hugging Face model card deepseek-ai/DeepSeek-V4-Flash-Vision-Exp, where you download weights and self-host; or call it through the official DeepSeek API. Exact addresses and parameters follow the card and official docs.
How is it related to DeepSeek-V4-Flash?
V4-Flash is text-only; Vision-Exp is a vision variant adding image input. "Vision" and "Exp" mean vision and experimental. Official wording says plain text matches V4-Flash, so adding vision did not cost text ability, and one model covers both text and image tasks.
Which image formats are supported?
JPEG, PNG, GIF, and WebP. GIF hints at tolerance for animated sequences, but whether it samples frames or treats them as multiple is unconfirmed per the card and docs. JPEG and PNG are covered; WebP too, sparing transcoding.
How does its vision compare to Claude Opus 4.8?
The claim is "close to Claude Opus 4.8," but that is qualitative wording from official docs and media, not a benchmark with control groups or an independent number. The right reading is that it pushes open-weight vision into the near-front-line band, a magnitude signal, not a precise score. Run a small evaluation on your own images before a serious comparison.
What are the params and context, and why "unconfirmed"?
Media says ~305B params and ~1M context, but DeepSeek has not confirmed these in the card or announcement, so this post marks them unconfirmed. The reason is they decide memory and parallel strategy for deployment; writing an unconfirmed number as settled distorts plans. Treat them as magnitude awareness and backfill once DeepSeek confirms.

Related

Open Source

Microduck: Hugging Face's $399 Open-Source Duck Robot Ships a Full RL Stack, With Hardware Files in Dispute

On 2026-08-27 Hugging Face and Pollen Robotics launched Microduck, a 25cm duck-shaped biped weighing under 800g at $399, with preorders opening the same day. The hardware is an RK3566 with 1GB of RAM and 32GB of storage, 15 XL330 servos, an 8x8 ToF LiDAR, and a 2600mAh battery rated at about an hour, running its control policy as ONNX on board at 50Hz, which is the spec that separates it from an app-driven toy. The valuable part is the software released alongside it: runtime and SDK, physics simulation, and a complete reinforcement learning training stack, published across `pollen-robotics/microduck` and `pollen-robotics/microduck_rl`, both Apache-2.0, measured via the GitHub API on 2026-08-31 at 4108 stars / 485 forks and 1037 stars / 179 forks. Training uses MuJoCo Warp (mjlab) with PPO, producing a deployable gait in one to two hours across 4096 parallel environments, with an actuator model, domain randomisation, and backlash simulation bridging sim-to-real, and observation normalisation baked into the exported ONNX. One honest caveat: whether the hardware design files were released too is disputed across sources, so this piece devotes a section to separating the four layers rather than picking a side.

Aug 31, 20268 min read
Open Source

LLaDA-Image: Ant Full-Open 6B Unified Image Generation Model

Ant Group's InclusionAI open-sourced LLaDA-Image, a 6B unified image generation and editing model (208 stars / Python / created 2026-08-31, snapshot 2026-09-09). One checkpoint does both text-to-image and instruction-guided editing; both backbone and DiT are diffusion models trained in a unified framework, with image-only pre-training establishing the visual prior; the Turbo variant uses Twin-DMD distillation to cut 50 steps down to 4. It scores 53.53 (English) and 53.38 (Chinese) on Qwen-Image-Bench, a double SOTA. HuggingFace and ModelScope host Base and Turbo weights, each with an FP8 variant, and community ComfyUI support landed on 2026-09-07. Biggest caveat: the repo's license field is null with no LICENSE file - confirm terms with InclusionAI before commercial use rather than assuming Apache-2.0 or MIT.

Sep 9, 202610 min read
Open Source

OpenMAIC: Multi-Agent Classroom That Topped GitHub Weekly

THU-MAIC/OpenMAIC topped the GitHub weekly chart with +8,095 stars in a week (33,053 stars / 5,369 forks / TypeScript / MIT as of 2026-09-08). It turns any topic or document into a multi-agent interactive classroom: AI teachers and classmates lecture, discuss, draw on a whiteboard, and speak via TTS, generating slides, quizzes, interactive simulations and PBL activities, exportable as .pptx or interactive HTML. v1.0.0 (2026-08-27) adds a chat-first agent workbench, durable sessions, and 20 built-in skills; the stack is Next.js 16 / React 19 / LangGraph 1.1. It relicensed from AGPL-3.0 to MIT at v0.3.0 and ships a standard SKILL.md package usable from OpenClaw, Codex, WorkBuddy and more.

Sep 8, 202610 min read