{"@context":"https://schema.org","@type":"NewsArticle","generatedAt":"2026-07-23T06:40:50.084Z","headline":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","description":"斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","url":"https://www.aioga.com/news/cmrizsslq0494bilkl42d4ma6/","mainEntityOfPage":"https://www.aioga.com/news/cmrizsslq0494bilkl42d4ma6/","datePublished":"2026-07-13T08:45:12.000Z","dateModified":"2026-07-13T08:45:12.000Z","inLanguage":"zh-CN","publisher":{"@type":"NewsMediaOrganization","name":"Aioga","url":"https://www.aioga.com"},"citation":["https://www.marktechpost.com/2026/07/13/stanford-researchers-introduce-trace","https://aihot.virxact.com/items/cmrizsslq0494bilkl42d4ma6"],"canonicalUrl":"https://www.aioga.com/news/cmrizsslq0494bilkl42d4ma6/","directAnswer":{"@type":"Answer","text":"Aioga 编辑摘要：斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。 Aioga 将其归入「论文研究」方向，重点关注它对真实使用和行业竞争的影响。","url":"https://www.aioga.com/news/cmrizsslq0494bilkl42d4ma6/","dateCreated":"2026-07-13T08:45:12.000Z","author":{"@type":"Organization","@id":"https://www.aioga.com/authors/aioga-editorial/#editorial-team","name":"Aioga Editorial Team","url":"https://www.aioga.com/authors/aioga-editorial/"}},"evidence":[{"@type":"CreativeWork","name":"marktechpost.com source article","url":"https://www.marktechpost.com/2026/07/13/stanford-researchers-introduce-trace","datePublished":"2026-07-13T08:45:12.000Z","provider":{"@type":"Organization","name":"marktechpost.com","url":"https://www.marktechpost.com/2026/07/13/stanford-researchers-introduce-trace"}},{"@type":"CreativeWork","name":"AIHot archive record","url":"https://aihot.virxact.com/items/cmrizsslq0494bilkl42d4ma6","datePublished":"2026-07-13T08:45:12.000Z","provider":{"@type":"Organization","name":"AIHot","url":"https://aihot.virxact.com/items/cmrizsslq0494bilkl42d4ma6"}}],"aggregationSource":"MarkTechPost（RSS）","originalPublisher":{"name":"marktechpost.com","url":"https://www.marktechpost.com/2026/07/13/stanford-researchers-introduce-trace"},"article":{"id":"cmrizsslq0494bilkl42d4ma6","slug":"cmrizsslq0494bilkl42d4ma6","url":"https://www.aioga.com/news/cmrizsslq0494bilkl42d4ma6/","title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","title_en":"Stanford Researchers Introduce TRACE： A Capability-Targeted Agentic Training System That Turns Recurrent Agent Failures Into Synthetic RL Environment","summary":"斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","source":"MarkTechPost（RSS）","sourceUrl":"https://www.marktechpost.com/2026/07/13/stanford-researchers-introduce-trace","aiHotUrl":"https://aihot.virxact.com/items/cmrizsslq0494bilkl42d4ma6","publishedAt":"2026-07-13T08:45:12.000Z","category":"论文研究","score":51,"selected":false,"articleBody":["Agentic LLMs often fail the same way, again and again. A Stanford research team traced this to missing, reusable capabilities. Their system, TRACE , diagnoses those gaps and trains for them directly.","TRACE stands for T urning R ecurrent A gent failures into C apability-targeted training E nvironments. It was released open-source under an MIT license.","To understand the design, first consider why agents fail. They lack specific skills that tasks demand, like retrieving the right record or verifying a precondition.","Two mainstream fixes spend compute poorly. Direct RL or SFT gives sparse rewards that never say which skill was missing. Broad synthetic data is untargeted, so budget flows to skills the model already has.","However, TRACE observes that failures are not random. A small set of deficits accounts for most failed trajectories. Therefore, each recurring deficit can become its own dense, verifiable training signal.","Given that findings, TRACE runs an automated four-step pipeline. Each step is driven by an LLM agent following a markdown prompt.","The base agent generates rollouts in the target environment. An analysis agent splits them into successful and failed sets. It then labels every trajectory-capability pair as NA , PRESENT , or LACKING .","A capability is retained only when it is contrastive and high-coverage. Specifically, its contrastive gap must clear δ = 0.20 and coverage must clear ρ = 0.10. Consequently, the pipeline keeps skills whose absence concentrates in failures.","Next, a generation agent builds one synthetic environment per retained capability. Each environment isolates a single capability while preserving the target’s tool schemas and format.","Task instances are procedurally generated from random seeds. Because generation and verification are algorithmic, rewards need no human labels or LLM judge.","Then each capability gets one LoRA (Low-Rank Adaptation) adapter, trained on its synthetic environment. The training algorithm is GRPO (Group Relative Policy Optimization). The base model stays frozen throughout.","GRPO groups rollouts by shared seed, so scenarios are identical within a group. Rewards are then normalized within each group to isolate the policy’s contribution.","Finally, TRACE composes the adapters into a Mixture-of-Experts (MoE) model. The backbone and adapters stay frozen, and only lightweight token-level gates are trained.","At inference, each token is routed top-1 to a single capability adapter. This lets the model switch experts mid-trajectory.","TRACE diagnoses the capabilities an agent lacks, builds one verifiable environment per gap, trains a LoRA expert for each, then routes tokens across experts. Step through the pipeline below.","Split rollouts into pass / fail, then keep gaps that separate them.","One seeded, auto-verifiable environment is generated per capability.","Rollouts share a seed; rewards are normalized within the group.","A learned gate routes each token top-1 to a single capability expert.","Targeted training and MoE composition beat prompt optimization and single-adapter baselines.","Built from arXiv:2604.05336：https://arxiv.org/abs/2604.05336 · code：https://github.com/ScalingIntelligence/TRACE. Numbers are from the paper. • Marktechpost","In practice, on τ²-Bench, contrastive analysis recovered four deficits. These were structured data reasoning, multi-step task completion, precondition verification, and tool calling precision.","Notably, this findings stayed stable across ten independent runs. Structured data reasoning alone covered the largest share of failed tasks. Multi-step task completion followed closely behind.","To ground these capabilities, consider three concrete tasks. Each maps to a distinct failure mode that TRACE targets.","With those capabilities trained, TRACE was tested on two backbones and two benchmarks. τ²-Bench measures customer-service pass rate across 50 airline and 114 retail tasks. SWE-bench Verified measures Pass@1 on 500 real GitHub issues.","On Qwen3-30B-A3B, TRACE improved τ²-Bench by +15.3 points and SWE-bench Verified by +15 points Pass@1. It beat the strongest external baselines, GEPA and SWE-RL, by +8.6 and +8.4 points.","Moreover, TRACE is sample-efficient. Using under one-fourth the rollouts, it exceeded the final scores of GRPO and GEPA. Its final accuracy ran +10.4 and +8.6 points higher on τ²-Bench. Additionally, a third benchmark, ToolSandBox, showed the same pattern.","On Qwen3.6-27B, TRACE reached 73.2% Pass@1 on SWE-bench Verified. That 27B open-weight model surpassed GPT-5.2-Codex (72.8%), GLM 5, and Claude 4.5 Sonnet on the public leaderboard.","For AI professionals, the pipeline is benchmark-agnostic and driven by markdown prompts. After environments are generated, each capability adapter is trained against a running vLLM server.","Each LoRA adapter adds ~1.6B trainable parameters, or 5.3% of the backbone. The trained MoE gate adds just 491,760 parameters in total. Default thresholds are ρ = 0.10, δ = 0.20, and 8-of-10 cross-run consistency.","Asif Razzaq is the CEO of Marktechpost Media Inc.. As a visionary entrepreneur and engineer, Asif is committed to harnessing the potential of Artificial Intelligence for social good. His most recent endeavor is the launch of an Artificial Intelligence Media Platform, Marktechpost, which stands out for its in-depth coverage of machine learning and deep learning news that is both technically sound and easily understandable by a wide audience. The platform boasts of over 2 million monthly views, illustrating its popularity among audiences.","Build an Agentic Event Venue Operator [Full Codes]：https://pxllnk.co/twdn5","Thanks! Our team will contact you soon"],"articleImages":[{"sourceUrl":"https://www.marktechpost.com/wp-content/uploads/2019/06/Screen-Shot-2021-09-14-at-9.02.24-AM-300x300.png","alt":"","afterParagraph":29,"url":"/media/articles/cmrizsslq0494bilkl42d4ma6/787a6d54564e8e19.webp"},{"sourceUrl":"https://www.marktechpost.com/wp-content/uploads/2026/07/blog19132-36-100x70.png","alt":"Perplexity AI Releases WANDR","afterParagraph":30,"url":"/media/articles/cmrizsslq0494bilkl42d4ma6/c5dd5ffe944a5f8b.webp"},{"sourceUrl":"https://www.marktechpost.com/wp-content/uploads/2026/07/blog19132-35-100x70.png","alt":"10 Open-Source No-Code Platforms for Building LLM Apps, RAG Systems, and AI Agents","afterParagraph":30,"url":"/media/articles/cmrizsslq0494bilkl42d4ma6/330c02f0ca218ba6.webp"},{"sourceUrl":"https://www.marktechpost.com/wp-content/uploads/2026/07/blog19132-34-100x70.png","alt":"Kimi K3 vs DeepSeek V4 Pro vs GLM-5.2","afterParagraph":30,"url":"/media/articles/cmrizsslq0494bilkl42d4ma6/a80f941097ee6a50.webp"},{"sourceUrl":"https://www.marktechpost.com/wp-content/uploads/2026/07/blog19132-33-100x70.png","alt":"Fine-Tuning Qwen3 with LoRA Using NVIDIA NeMo AutoModel","afterParagraph":30,"url":"/media/articles/cmrizsslq0494bilkl42d4ma6/6fe6f7b6366a31dc.webp"},{"sourceUrl":"https://www.marktechpost.com/wp-content/uploads/2026/07/blog19132-32-100x70.png","alt":"NVIDIA Released DeepStream 9.1","afterParagraph":30,"url":"/media/articles/cmrizsslq0494bilkl42d4ma6/1e950c77753bb01b.webp"}],"mediaStatus":"ok","articleBodyZh":[],"translationStatus":"","bodyOrigin":"source-page","editorial":{"summary":"Aioga 编辑摘要：斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。 Aioga 将其归入「论文研究」方向，重点关注它对真实使用和行业竞争的影响。","background":"背景分析：模型与研究类动态需要结合能力边界、开放方式、成本、可用性和真实任务表现判断，单项指标领先不等于已经形成稳定采用。","viewpoint":"Aioga 判断：这条动态更适合作为行业观察信号，当前信息足以建立线索，但不足以推导长期结论。","implications":"影响分析：对相关团队而言，短期应先核对来源、可用范围和实际成本，再判断是否值得接入或跟进。","nextStep":"后续观察：继续观察官方文档、实际可用性、价格变化、开发者反馈和竞品回应。","evidenceRefs":["title","summary","articleBody"],"confidence":"medium","status":"published","aiGenerated":false,"autoApproved":true,"generatedBy":"rule-safe-fallback","generatedAt":"2026-07-23T06:49:19.322Z","sourceHash":"197066afe23de9c6","validation":{"passed":true,"mode":"rule-safe-fallback","checks":["schema","length","source-attribution","no-html"]}},"tags":["论文研究","MarkTechPost（RSS）"],"translations":{"zh-CN":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga AI资讯","description":"斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 P","url":"https://www.aioga.com/news/cmrizsslq0494bilkl42d4ma6/"},"en":{"title":"Stanford Researchers Introduce TRACE： A Capability-Targeted Agentic Training System That Turns Recurrent Agent Failures Into Synthetic RL Environment","summary":"Aioga tracks this update from MarkTechPost（RSS） under Research. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"Research","source":"MarkTechPost（RSS）","pageTitle":"Stanford Researchers Introduce TRACE： A Capability-Targeted Agentic Training System That Turns Recurrent Agent Failures Into Synthetic RL Environment - Aioga AI News","description":"Aioga tracks this update from MarkTechPost（RSS） under Research. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。","url":"https://www.aioga.com/en/news/cmrizsslq0494bilkl42d4ma6/"},"ja":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aiogaは「論文研究」の動きとして、MarkTechPost（RSS） からの更新を追跡しています。斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"論文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga AIニュース","description":"Aiogaは「論文研究」の動きとして、MarkTechPost（RSS） からの更新を追跡しています。斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Be","url":"https://www.aioga.com/ja/news/cmrizsslq0494bilkl42d4ma6/"},"ko":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga는 MarkTechPost（RSS）의 업데이트를 연구 흐름으로 추적합니다. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"연구","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga AI 뉴스","description":"Aioga는 MarkTechPost（RSS）의 업데이트를 연구 흐름으로 추적합니다. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench ","url":"https://www.aioga.com/ko/news/cmrizsslq0494bilkl42d4ma6/"},"es":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga sigue esta actualización de MarkTechPost（RSS） dentro de Investigación. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"Investigación","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga Noticias de IA","description":"Aioga sigue esta actualización de MarkTechPost（RSS） dentro de Investigación. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家","url":"https://www.aioga.com/es/news/cmrizsslq0494bilkl42d4ma6/"},"fr":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga suit cette mise à jour de MarkTechPost（RSS） dans la catégorie Recherche. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"Recherche","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga Actualités IA","description":"Aioga suit cette mise à jour de MarkTechPost（RSS） dans la catégorie Recherche. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在","url":"https://www.aioga.com/fr/news/cmrizsslq0494bilkl42d4ma6/"},"de":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga KI-News","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/de/news/cmrizsslq0494bilkl42d4ma6/"},"pt-BR":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga Notícias de IA","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/pt-BR/news/cmrizsslq0494bilkl42d4ma6/"},"ru":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga Новости ИИ","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/ru/news/cmrizsslq0494bilkl42d4ma6/"},"ar":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga أخبار الذكاء الاصطناعي","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/ar/news/cmrizsslq0494bilkl42d4ma6/"},"hi":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga AI समाचार","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/hi/news/cmrizsslq0494bilkl42d4ma6/"},"it":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga Notizie IA","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/it/news/cmrizsslq0494bilkl42d4ma6/"},"nl":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga AI-nieuws","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/nl/news/cmrizsslq0494bilkl42d4ma6/"},"tr":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga AI Haberleri","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/tr/news/cmrizsslq0494bilkl42d4ma6/"},"vi":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Tin tức AI Aioga","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/vi/news/cmrizsslq0494bilkl42d4ma6/"},"id":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Berita AI Aioga","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/id/news/cmrizsslq0494bilkl42d4ma6/"},"th":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - ข่าว AI Aioga","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/th/news/cmrizsslq0494bilkl42d4ma6/"},"pl":{"title":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统","summary":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRACE 在 τ2-Bench 上提升了 15.3 个点，在 SWE-bench Verified 上达到 73.2% 的 Pass@1。","category":"论文研究","source":"MarkTechPost（RSS）","pageTitle":"斯坦福大学推出 TRACE：将智能体反复失败转化为合成 RL 训练环境的能力定向训练系统 - Aioga Wiadomości AI","description":"Aioga tracks this update from MarkTechPost（RSS） under 论文研究. 斯坦福大学研究人员提出 TRACE，一种能力定向的智能体训练系统。该系统从智能体自身的运行轨迹中诊断出反复出现的失败模式，针对每种能力合成一个可验证的训练环境，为每种能力训练一个 LoRA 适配器，并在专家之间路由模型 token。TRAC","url":"https://www.aioga.com/pl/news/cmrizsslq0494bilkl42d4ma6/"}}}}