All Topics
All Topics
Technology
Technology
AI
AI
Business
Business
Entertainment
Entertainment
News
News
Programming
Programming
Science
Science
Design
Design
Environment
Environment
Finance
Finance
Crypto
Crypto
Politics
Politics
Sports
Sports
Education
Education
Gaming
Gaming
Art
Art
Music
Music
Health
Health
Security
Security
Books
Books
Food
Food
Travel
Travel
Personal
Personal
Bluesky
Twitter
First reported by 36氪
SpaceX AI与Cursor发布面向法律、金融场景的Grok AI模型

Grok 4.5发布:SpaceX AI 1.5T参数V9架构、Cursor联合训练与单位成本智能密度革命

11h agoen
Read on happyrock.cloud

From the article

一、引言 2026年7月9日,GPT-5.6全球解禁的同一天,马斯克旗下的SpaceX AI正式向公众开放了Grok 4.5。这不是一个巧合——两大模型同日上线,直接拉开了AI军备竞赛的新篇章。 Grok 4.5是SpaceX AI上市后的第一张王牌,基于全新的1.5万亿参数V9基座,联合Cursor引入数万亿真实开发者编程交互数据训练而成。马斯克本人给出的定位是"大致相当于Opus 4.7,但快得多"。真正让业界震动的是其单位成本智能密度——完成同一工程任务消耗的token数仅为Claude Opus 4.8的四分之一。 它不是当前最强的模型,但在"单位时间、单位成本能买到多少智能"这件事上,Grok 4.5是目前头部模型里最激进的挑战者。 二、V9架构:从V8到1.5T参数的跨越 2.1 架构升级 Grok 4.5基于xAI自研的V9基础架构,相比前代V8(Grok 4.3约5000亿参数),参数规模扩展至1.5万亿,是V8的三倍。这是xAI迄今发布的最大模型。 训练硬件为数万块NVIDIA GB300 GPU,采用了高度异步的训练架构,允许智能体连续运行数小时,模型边推理边学习。这套架构的核心设计理念是"per-token intelligence"(每个token的智能密度)——不是在规模上堆砌参数,而是在每个token生成的效率上做极致优化。 2.2 Cursor数据的独特价值 Grok 4.5区别于其他模型的关键差异在于训练数据。SpaceX在今年早些时候以约600亿美元收购了Cursor(Anysphere),团队已并入xAI。Grok 4.5的补充训练中加入了Cursor平台上数以万亿计的真实开发者交互数据。 这些数据不仅仅记录了"代码长什么样",更记录了真实开发者如何与代码库、工具链、AI Agent协作的全过程——真实的bug、真实的调试过程、真实的架构决策。这意味着Grok 4.5学到的不只是代码语法,而是"人和AI是怎么一起写代码的"。 // Go实现:Cursor数据注入训练的核心机制 package cursor_training import ( "context" "fmt" "time" ) // DeveloperInteraction 记录真实开发者的IDE交互数据 type DeveloperInteraction struct { Timestamp time . Time Action string // "edit", "debug", "review", "test", "commit" FilePath string Language string ContextLines [] string UserIntent string AgentAction string // AI Agent的响应行为 Resolved bool // 是否成功解决 } // CursorDataPipeline Cursor数据注入的训练管线 type CursorDataPipeline struct { interactions [] DeveloperInteraction model * V9Model } // V9Model 简化的V9模型结构 type V9Model struct { parameters int64 trainingHardware string asyncArch bool } // InjectCursorData 将Cursor数据注入补充训练 // 这是Grok 4.5区别于其他模型的核心差异 func ( p * CursorDataPipeline ) InjectCursorData ( ctx context . Context ) error { fmt . Printf ( "注入 %d 条Cursor开发交互数据...\n" , len( p . interactions )) // 数据分类:按交互类型分组 debugData := p . filterByAction ( "debug" ) reviewData := p . filterByAction ( "review" ) editData := p . filterByAction ( "edit" ) fmt . Printf ( " - 调试数据: %d 条\n" , len( debugData )) fmt . Printf ( " - 审查数据: %d 条\n" , len( reviewData )) fmt . Printf ( " - 编辑数据: %d 条\n" , len( editData )) // 构建训练样本:每个样本包含"上下文 -> 开发者意图 -> Agent响应 -> 是否解决" samples := p . buildTrainingSamples () fmt . Printf ( "生成 %d 个训练样本\n" , len( samples )) return nil } func ( p * CursorDataPipeline ) filterByAction ( action string ) [] DeveloperInteraction { var filtered [] DeveloperInteraction for _ , d := range p . interactions { if d . Action == action { filtered = append( filtered , d ) } } return filtered } func ( p * CursorDataPipeline ) buildTrainingSamples () [] string { // 每个样本记录: // 1. 开发者的意图(自然语言描述) // 2. 当前代码上下文 // 3. AI Agent的响应和行为 // 4. 最终是否成功解决 var samples [] string for _ , d := range p . interactions { sample := fmt . Sprintf ( "Intent: %s\nContext: %s\nAgent: %s\nResolved: %v" , d . UserIntent , d . ContextLines [ 0 ], d . AgentAction , d . Resolved , ) samples = append( samples , sample ) } return samples } func main () { pipeline := & CursorDataPipeline { model : & V9Model { parameters : 1_500_000_000_000 , // 1.5T trainingHardware : "NVIDIA GB300 x 数万块" , asyncArch : true , }, } ctx := context . Background () pipeline . InjectCursorData ( ctx ) fmt . Printf ( "\nV9模型参数: %d\n" , pipeline . model . parameters ) fmt . Printf ( "训练硬件: %s\n" , pipeline . model . trainingHardware ) fmt . Printf ( "异步架构: %v\n" , pipeline . model . asyncArch ) } 三、性能基准:第一梯队的实力 3.1 核心基准成绩 基准测试 Grok 4.5 GPT-5.5 Claude Opus 4.8 Claude Fable 5 SWE-bench Pro 64.7% 58.6% 69.2% — Terminal-bench 2.1 83.3% 83.4% 85.0% — DeepSWE 1.0 62.0% 64.31% 55.75% — AAAI综合排名 第4 第2 第3 第1 Harvey法律Agent 第1 — — — 关键解读:
Continue reading on happyrock.cloud

You might also wanna read

Comments

Sign in to join the conversation.

No comments yet. Be the first.