AI News AI资讯 1d ago Updated 17h ago 更新于 17小时前 46

Thinking Machines Lab Releases Inkling-Small: A 276B Total, 12B Active Open Weights Multimodal MoE Model Thinking Machines Lab发布Inkling-Small:276B总参数、12B激活参数的开源多模态MoE模型

Inkling-Small is a 276B total / 12B active sparse Mixture-of-Experts model released under Apache 2.0, roughly a quarter the size of its 975B teacher model Inkling It outperforms Inkling on reasoning and agentic coding benchmarks (HLE 31.6% vs 29.7%, SWE-bench Verified 80.2% vs 77.6%, ARC-AGI-2 40.1% vs 36.5%) despite being significantly smaller The NVFP4 quantized checkpoint enables deployment on a single NVIDIA B300 GPU with only 180 GB VRAM, dramatically lowering the barrier for self-hosting f Inkling-Small是276B总参数/12B激活的稀疏MoE模型,规模为Inkling(975B/41B)的四分之一 原生支持文本、图像、音频三模态输入,1M token上下文窗口,thinking effort可调 NVFP4量化版本仅需180GB VRAM,单卡B300即可部署,大幅降低使用门槛 在推理和编程基准上超越更大模型(HLE 31.6% vs 29.7%,SWE-bench 80.2% vs 77.6%),但事实回忆能力有所下降 Apache 2.0开源,支持SGLang/vLLM等主流运行时,适合企业私有化部署

68
Hot 热度
65
Quality 质量
62
Impact 影响力

Analysis 深度分析

TL;DR

  • Inkling-Small is a 276B total / 12B active sparse Mixture-of-Experts model released under Apache 2.0, roughly a quarter the size of its 975B teacher model Inkling
  • It outperforms Inkling on reasoning and agentic coding benchmarks (HLE 31.6% vs 29.7%, SWE-bench Verified 80.2% vs 77.6%, ARC-AGI-2 40.1% vs 36.5%) despite being significantly smaller
  • The NVFP4 quantized checkpoint enables deployment on a single NVIDIA B300 GPU with only 180 GB VRAM, dramatically lowering the barrier for self-hosting frontier-class MoE models
  • The model is natively multimodal (text, image, audio) with a 1M token context window and adjustable thinking effort, trained on NVIDIA GB300 NVL72 systems
  • Factual recall regressed compared to the teacher: SimpleQA Verified dropped to 20.6% from Inkling's 43.9%, and the AA Omniscience index fell to -9.0 from 2.1

Why It Matters

Inkling-Small demonstrates that a significantly smaller MoE model can surpass its larger teacher on complex reasoning and agentic coding tasks, challenging the assumption that scale alone drives capability. The availability of an NVFP4 checkpoint running on a single B300 makes frontier-class multimodal reasoning accessible to startups and regulated enterprises that previously could only access such models through expensive API endpoints. This shifts the economics of self-hosting large reasoning models from data-center-scale deployments to single-GPU instances.

Technical Details

  • Architecture: 42-layer decoder-only transformer with a sparse MoE feed-forward backbone; each token routes to 6 of 256 experts plus 2 shared experts active on every token. Hybrid local and global attention layers. Encoder-free native multimodal design.
  • Multimodal processing: Images are split into 40×40-pixel patches and transformed via a four-layer hMLP; audio is represented as dMel spectrograms. Both modalities pass through lightweight embedding layers and are processed jointly with text tokens within the same decoder. Audio input is WAV at 16 kHz (ideally under 2 minutes); output is text only.
  • Training pipeline: Trained after the larger Inkling, allowing revisions to the pre-training data mix and ML recipe. Post-training used on-policy distillation from Inkling as teacher, followed by two weeks of agentic coding RL scaling.
  • Quantization & deployment: Supports BF16, MXFP8, and NVFP4 numerics. BF16 requires 600 GB aggregated VRAM (4× B300 or 8× H200); NVFP4 drops this to 180 GB. W4A4 runs on a single B300 (SM100+ required); W4A16 runs on 2× H200. Compatible runtimes include SGLang, vLLM, TokenSpeed, Unsloth, and Hugging Face.
  • Benchmark highlights: HLE 31.6%, SWE-bench Verified 80.2%, Terminal-Bench 2.1 64.7%, Toolathlon Verified 54.4%, GPQA Diamond 89.5%, AIME 2026 95.5%, IFBench 82.2%, ARC-AGI-2 40.1%. Multimodal: MMMU Pro 74.0%, CharXiv RQ 77.4% (81.3% with Python tool use), Audio MC 54.9%, MMAU 77.0%, VoiceBench 90.1%. ForecastBench Brier Index 61.3. Safety: StrongREJECT 98.4%, FORTRESS adversarial 71.6%, FORTRESS benign 96.9%.

Industry Insight

  • The single-GPU deployment path for a 276B-parameter model effectively eliminates the infrastructure moat that frontier labs previously held, enabling startups and mid-size enterprises to self-host reasoning-capable models without multi-GPU clusters. This will accelerate private-deployment adoption in regulated sectors (finance, healthcare, telecom, public sector) where data sovereignty is critical.
  • The performance regression in factual recall (SimpleQA) alongside gains in reasoning and coding suggests a trade-off in the training recipe that prioritizes agentic and reasoning capabilities over factual grounding. Practitioners should be aware that this model may require additional factual grounding layers or retrieval augmentation for knowledge-intensive applications.
  • The adjustable "thinking effort" parameter combined with native multimodal input (text, image, audio) positions this model as a strong candidate for autonomous agent workflows—particularly coding agents, terminal automation, and call-center analytics—where dynamic compute allocation and multi-modal perception are essential.

TL;DR

  • Inkling-Small是276B总参数/12B激活的稀疏MoE模型,规模为Inkling(975B/41B)的四分之一
  • 原生支持文本、图像、音频三模态输入,1M token上下文窗口,thinking effort可调
  • NVFP4量化版本仅需180GB VRAM,单卡B300即可部署,大幅降低使用门槛
  • 在推理和编程基准上超越更大模型(HLE 31.6% vs 29.7%,SWE-bench 80.2% vs 77.6%),但事实回忆能力有所下降
  • Apache 2.0开源,支持SGLang/vLLM等主流运行时,适合企业私有化部署

为什么值得看

Inkling-Small通过参数效率优化实现了"小模型超越大模型"的突破,证明了MoE架构和强化学习微调的价值。其单卡部署能力使初创公司和中型企业能够以较低成本自托管前沿级模型,为金融、医疗等受监管行业提供了私有化AI解决方案。

技术解析

  • 架构:42层decoder-only transformer,稀疏MoE前馈网络,每token路由至6/256专家+2共享专家,混合局部-全局注意力机制
  • 多模态处理:图像经40×40像素patch和四层hMLP编码,音频使用dMel spectrograms,两者通过轻量嵌入层与文本token联合处理,输出仅文本
  • 训练策略:先训练预览版checkpoint,再用Inkling作为教师进行on-policy蒸馏,最后进行两周agentic coding RL扩展
  • 部署灵活性:支持BF16/MXFP8/NVFP4多种精度,NVFP4量化后单B300(180GB VRAM

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Open Source 开源 LLM 大模型 Multimodal 多模态 Training 训练 Product Launch 产品发布