Daily Tech Briefing
AI 科技速览
每天 5 分钟内学习 AI。获取最新的人工智能新闻,理解其重要性,并学习如何将其应用于您的工作。
Dev.to AI · 2026/8/4 08:33:48

MiniMax H3 Is Open-Weight Now — Here's What's Actually Downloadable vs API-Only
AI 中文解读
MiniMax H3开源了,但先别高兴太早!这次开源的核心是视频生成模型的主干部分,真正的完整商业管线还得付费走API。通俗点说,就像餐厅公开了招牌菜的配方,但秘制酱汁和摆盘服务仍是店里独有。模型本身很强大,能用文字或图片生成视频,还能参考已有视频的风格;技术团队也做了优化,普通家用显卡加内存就能跑起来,只是速度会比较慢。需要留意的是,受限地区包括美国、欧盟、英国和韩国,国内用户暂时无法使用开源版本。对普通人来说,这波开源意味着视频创作门槛进一步降低,未来更多免费或低成本的AI视频工具会涌现,无论是做短视频、设计素材还是游戏动画,普通创作者都可能用上更灵活、可本地部署的视频生成能力。
<p><a href="https://www.minimax.io/" rel="noopener noreferrer">MiniMax</a> released H3, a general-purpose multimodal video generation system, on July 31, and confirmed shortly after that the weights are open — live on Hugging Face as MiniMaxAI/MiniMax-H3, with a ComfyUI-repackaged mirror shipping native support the same day.<br>
<a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4m7ehdsstvdungsnm2qk.png" class="article-body-image-wrapper"><img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F4m7ehdsstvdungsnm2qk.png" alt=" " width="800" height="336"></a><br>
Important upfront: the open-weight license reportedly excludes the EU, UK, South Korea, and the United States from its applicable territory. Commercial use elsewhere is free but requires displaying "MiniMax H3" in your product UI, and revenue above $20M/year needs separate written authorization. If you're in one of the excluded regions, check the license on the Hugging Face model card directly before planning to use this — don't take a secondhand summary (including this one) as the final word on your specific situation.</p>
<p>What's actually open vs. what stays API-only: the system has three layers — a hosted preprocessing/orchestration layer (Context-IR) that stays behind MiniMax's API, the core generator (H3-Base) which is what's open-sourced, and a 2K regeneration pass (Regenerate-2K) that also stays API-hosted. So "open-sourced" here means the core generator, not the full commercial pipeline.</p>
<p>The technical specifics, for anyone evaluating whether this is runnable on their own hardware: it's a 33B dense single-stream Transformer, shipped as two task-specific checkpoints — fl2va (text/image-driven generation) and ref2va (reference-driven generation) — around 21GB each in their smallest quantized form. Full precision runs about 123.6GB; the smallest working combination is reportedly around 42.5GB. ComfyUI's own guidance suggests a 12GB card plus CPU offloading can run it, though expect that to be a slow, not snappy, experience. Native local generation is 768px on the short edge — the 2K output comes from a separate in-context regeneration pass that isn't part of the open weights.</p>
<p>Rough shape of getting it running (check the official model card for exact, current commands — this is illustrative, not copy-paste-guaranteed given how fast these release details can shift):<br>
</p>
<div class="highlight js-code-highlight">
<pre class="highlight plaintext"><code>from huggingface_hub import snapshot_download
# Download only the checkpoint you actually need —
# fl2va for text/image-driven generation, ref2va for reference-driven
snapshot_download(
repo_id="MiniMaxAI/MiniMax-H3",
allow_patterns=["fl2va/*"], # or "ref2va/*"
local_dir="./minimax-h3"
)
# From here, follow the model card's specific inference instructions —
# this is a 33B video model, not a drop-in chat completion call,
# and exact loading code depends on which runtime (ComfyUI, diffusers-style
# pipeline, etc.) you're using.
</code></pre>
</div>
<p>Why the release got attention beyond "another model dropped": Artificial Analysis reportedly ranked H3 #1 in video editing and top-three in both text-to-video and image-to-video, and noted that releasing the weights would make it the leading open-weight model in the category by a clear margin (Artificial Analysis, July 2026). Worth balancing that against the same benchmark reportedly showing H3 trailing Gemini Omni Flash in text-to-video, and behind both Seedance 2.0 and Gemini Omni Flash in image-to-video (South China Morning Post, July 2026) — it's a strong result in one specific category (editing), not a clean sweep.</p>
<p>TL;DR: MiniMax open-sourced H3's core
分享
阅读原文 ↗