AI News AI资讯 8h ago Updated 3h ago 更新于 3小时前 50

Poolside Releases Laguna S 2.1, an Open-Weight Agentic Coding Model Punching Above Its Weight Class on SWE-Bench Multilingual Poolside发布Laguna S 2.1,一款在SWE-Bench多语言基准测试中表现超群的开源权重智能编码模型

Poolside released Laguna S 2.1, an 118B-parameter Mixture-of-Experts (MoE) coding model with only 8B active parameters per token, enabling high performance on limited hardware. The model achieves state-of-the-art results among open, disclosed-size models, scoring 70.2% on Terminal-Bench 2.1 and 78.5% on SWE-Bench Multilingual. It features a 1M-token context window and a "max thinking" mode that significantly boosts performance on complex tasks like DeepSWE (from 16.5% to 40.4%) at the cost of hi Poolside发布Laguna S 2.1,一款118B参数总量、8B激活参数的MoE开源编码模型,支持1M上下文窗口。 在Terminal-Bench 2.1(70.2%)和SWE-Bench Multilingual(78.5%)等基准测试中表现优异,领先于同规模开源模型。 模型采用“Max Thinking”模式,通过增加推理步数和Token消耗显著提升长周期编码任务性能,但成本较高。 优化后可在单台NVIDIA DGX Spark(128GB内存)上运行4-bit量化版本,具备极高的部署灵活性。 训练周期不到九周,使用4096块H200 GPU,并首次在全流程强化学习中采用FP8精度

72
Hot 热度
75
Quality 质量
70
Impact 影响力

Analysis 深度分析

TL;DR

  • Poolside released Laguna S 2.1, an 118B-parameter Mixture-of-Experts (MoE) coding model with only 8B active parameters per token, enabling high performance on limited hardware.
  • The model achieves state-of-the-art results among open, disclosed-size models, scoring 70.2% on Terminal-Bench 2.1 and 78.5% on SWE-Bench Multilingual.
  • It features a 1M-token context window and a "max thinking" mode that significantly boosts performance on complex tasks like DeepSWE (from 16.5% to 40.4%) at the cost of higher token usage.
  • Weights are available in multiple precisions (BF16, FP8, INT4, NVFP4), allowing deployment on a single NVIDIA DGX Spark (128GB) when quantized to 4-bit.
  • Training was completed in under nine weeks on 4,096 NVIDIA H200 GPUs, marking it as Poolside's third major release in less than three months.

Why It Matters

Laguna S 2.1 demonstrates that efficient MoE architectures can compete with significantly larger dense or hybrid models, challenging the assumption that sheer parameter count is the primary driver of coding capability. Its ability to run on consumer-grade or edge-like hardware (single DGX Spark) lowers the barrier for private, secure agentic coding deployments. Furthermore, the emphasis on long-horizon "thinking" modes highlights a shift toward models capable of sustained, multi-step reasoning rather than just immediate code generation.

Technical Details

  • Architecture: 118B total parameters with 8B activated per token (approx. 6.8% sparsity). Uses a Mixture-of-Experts design where all experts remain in memory during inference.
  • Context & Modes: Supports up to 1M tokens context. Features two thinking modes: "off" and "max" (default). The "max" mode allows the model to self-determine test-time compute budgets, leading to longer reasoning chains.
  • Training & Precision: Pre-trained on 4,096 NVIDIA H200 GPUs in under nine weeks. Notably, this is the first Poolside model to use FP8 precision for reinforcement learning. Weights are provided in BF16, FP8, INT4, and NVFP4 formats.
  • Performance Benchmarks:
    • Terminal-Bench 2.1: 70.2% (with thinking).
    • SWE-Bench Multilingual: 78.5%.
    • DeepSWE v1.1: 40.4% (a significant jump from 16.5% without thinking).
  • Deployment: Optimized for vLLM, SGLang, and Ollama. Requires ~59GB VRAM for 4-bit (fits DGX Spark), ~118GB for FP8, and ~236GB for BF16.

Industry Insight

  • Efficiency over Scale: The success of an 8B-active parameter model competing with models having tens or hundreds of billions of active parameters suggests that architectural efficiency (MoE) and training data quality are becoming more critical than raw model size for specific domains like coding.
  • Agentic Reasoning Costs: The substantial performance gain from "thinking" modes comes with a heavy token cost (e.g., DeepSWE trajectories increasing from 99k to 249k tokens). Practitioners must balance latency/cost against accuracy when deploying agentic workflows.
  • Hardware Democratization: By supporting NVFP4 and fitting into 128GB unified memory systems, Poolside enables organizations to deploy powerful coding agents locally or on smaller clusters, reducing reliance on massive cloud GPU instances for inference.

TL;DR

  • Poolside发布Laguna S 2.1,一款118B参数总量、8B激活参数的MoE开源编码模型,支持1M上下文窗口。
  • 在Terminal-Bench 2.1(70.2%)和SWE-Bench Multilingual(78.5%)等基准测试中表现优异,领先于同规模开源模型。
  • 模型采用“Max Thinking”模式,通过增加推理步数和Token消耗显著提升长周期编码任务性能,但成本较高。
  • 优化后可在单台NVIDIA DGX Spark(128GB内存)上运行4-bit量化版本,具备极高的部署灵活性。
  • 训练周期不到九周,使用4096块H200 GPU,并首次在全流程强化学习中采用FP8精度。

为什么值得看

本文展示了高效MoE架构与极致推理优化在垂直领域(代码生成)的应用潜力,证明了中等规模激活参数模型可媲美甚至超越更大参数量的闭源模型。对于AI从业者而言,它提供了关于如何在有限硬件资源下部署高性能Agent模型的具体工程实践参考。

技术解析

  • 模型架构与规格:Laguna S 2.1为混合专家(MoE)架构,总参数量118B,每Token仅激活约8B参数(6.8%稀疏度)。所有专家权重常驻内存,确保推理效率。支持1M token上下文,提供BF16、FP8、INT4及NVFP4多种精度权重,并兼容GGUF和MLX格式。
  • 性能基准对比:在Terminal-Bench 2.1中得分70.2%,在SWE-Bench Multilingual中得分78.5%,均位居公开披露规模的开源模型前列。尽管在DeepSWE v1.1等复杂任务上落后于顶级闭源模型(如Kimi K3),但在同等激活参数规模下具有显著竞争力。
  • 思考模式机制:默认启用“Max Thinking”模式,模型自主决定测试时计算预算。该模式通过延长推理链条提升准确率,例如DeepSWE任务得分从16.5%提升至40.4%,但伴随Token消耗大幅增加(完成Token从99k增至249k)。
  • 部署与硬件兼容性:通过与NVIDIA合作优化,4-bit量化版本仅需约59GB显存,可直接部署于单台NVIDIA DGX Spark设备。FP8版本需约118GB,BF16版本需约236GB(需双Spark或多GPU节点)。原生支持vLLM、SGLang和Ollama。

行业启示

  • MoE架构的实用化深化:Laguna S 2.1的成功表明,通过精细控制激活参数比例,可以在保持大模型知识容量的同时,大幅降低推理成本和延迟,这将是未来构建高效Agent的核心技术路径。
  • 推理成本与性能的权衡:“Thinking Mode”带来的性能飞跃是以高昂的Token消耗为代价的。在实际应用中,开发者需要根据任务复杂度动态调整推理深度,或在系统层面设计缓存和草稿机制以优化成本效益。
  • 边缘/单机部署的可能性提升:能够在单台DGX Spark上运行具备百万级上下文的大模型,标志着高端AI推理正从云端数据中心向边缘工作站下沉,为私有化部署和高安全性场景提供了新的硬件解决方案。

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

Open Source 开源 Agent Agent Code Generation 代码生成 Benchmark 基准测试 Deployment 部署