AI Skills AI技能 16h ago Updated 4h ago 更新于 4小时前 51

Why Fine-Tuning Is No Longer Your First Choice for Custom AI? 为什么微调不再是你定制AI的首选?

Fine-tuning, once considered essential for domain-specific AI, is increasingly being surpassed by general-purpose frontier models that require no custom training Harvey's legal AI, which beat GPT-4 in 2023 blind tests, was overtaken by seven general-purpose models on its own benchmark by 2025 BloombergGPT, trained from scratch for financial applications, was also outperformed by GPT-4 and ChatGPT on financial benchmarks Three key factors drove this shift: massive context windows (up to 1M+ token Harvey法律AI公司2023年微调模型在盲测中以97%偏好率击败GPT-4,但2025年测试显示7个通用前沿模型已超越其定制微调模型 BloombergGPT同样被GPT-4和ChatGPT在多项金融基准测试中超越,证明通用模型正在快速追赶甚至反超专用微调模型 通用模型追赶的三大原因:上下文窗口扩展至百万级token、推理模型在推理时进行扩展思考、模型推理成本持续下降 RAG(检索增强生成)、上下文工程(Context Engineering)和Agent技能等不修改模型权重的技术栈,正在成为定制AI的主流方案 微调仍适用于特定场景,但已不再是定制AI的首选方案

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

Analysis 深度分析

TL;DR

  • Fine-tuning, once considered essential for domain-specific AI, is increasingly being surpassed by general-purpose frontier models that require no custom training
  • Harvey's legal AI, which beat GPT-4 in 2023 blind tests, was overtaken by seven general-purpose models on its own benchmark by 2025
  • BloombergGPT, trained from scratch for financial applications, was also outperformed by GPT-4 and ChatGPT on financial benchmarks
  • Three key factors drove this shift: massive context windows (up to 1M+ tokens), reasoning models that think at inference time, and rapidly improving frontier models that make fine-tuned versions obsolete quickly
  • Lightweight customization techniques like RAG and context engineering now solve most specialization needs without modifying model weights

Why It Matters

This article signals a fundamental shift in how AI practitioners should approach model customization, moving away from expensive, slow fine-tuning pipelines toward modular, weight-free techniques. For AI engineers and product teams, it means rethinking resource allocation—investing in RAG infrastructure and prompt engineering may yield better ROI than training custom models. For the industry at large, it raises questions about the long-term value proposition of fine-tuned models and the competitive moats they once provided.

Technical Details

  • Context windows: Frontier models now support 1M+ token input windows, enabling systems to ingest hundreds of domain-specific documents directly at inference time rather than baking them into model weights through fine-tuning
  • Reasoning models: Extended chain-of-thought reasoning at inference time allows models to work through complex problems step by step, reducing the need for task-specific weight adjustments
  • RAG (Retrieval-Augmented Generation): Documents are retrieved at query time from a vector store and injected into the prompt, allowing knowledge bases to update dynamically without retraining
  • Context engineering: Carefully structured prompts combining system instructions, retrieved data, format guidelines, and user queries serve as a lightweight alternative to fine-tuning for shaping model behavior
  • Benchmark evidence: Harvey's 2025 legal benchmark showed 7 general-purpose frontier models outperforming their fine-tuned system; Bloomberg evaluations showed GPT-4/ChatGPT surpassing BloombergGPT on financial tasks

Industry Insight

  • Organizations should prioritize building robust RAG pipelines and context engineering practices before considering fine-tuning, as these approaches offer faster iteration, lower costs, and up-to-date knowledge without retraining overhead
  • Fine-tuning still holds value for highly specialized, latency-sensitive, or cost-constrained scenarios where sending large context windows to expensive frontier models is impractical, but it should no longer be the default assumption for domain customization
  • The competitive advantage of proprietary fine-tuned models is eroding rapidly; companies should focus on data moats (unique retrieval corpora, agent workflows, and system design) rather than model weight moats as their primary differentiator

TL;DR

  • Harvey法律AI公司2023年微调模型在盲测中以97%偏好率击败GPT-4,但2025年测试显示7个通用前沿模型已超越其定制微调模型
  • BloombergGPT同样被GPT-4和ChatGPT在多项金融基准测试中超越,证明通用模型正在快速追赶甚至反超专用微调模型
  • 通用模型追赶的三大原因:上下文窗口扩展至百万级token、推理模型在推理时进行扩展思考、模型推理成本持续下降
  • RAG(检索增强生成)、上下文工程(Context Engineering)和Agent技能等不修改模型权重的技术栈,正在成为定制AI的主流方案
  • 微调仍适用于特定场景,但已不再是定制AI的首选方案

为什么值得看

这篇文章揭示了AI定制策略的根本性转变:从依赖模型微调转向更轻量、模块化的上下文工程方案,对AI从业者的技术选型具有重要指导意义。它通过Harvey和Bloomberg的真实案例,清晰展示了通用前沿模型如何快速追赶甚至超越专用微调模型,为行业提供了战略层面的参考。

技术解析

  • 基准测试反转案例:Harvey在2023年与OpenAI合作微调的法律模型在盲测中以97%偏好率击败GPT-4,但2025年使用自研法律基准测试时,7个通用前沿模型(未经任何法律微调)均超越了其定制模型。BloombergGPT同样在后续评估中被GPT-4和ChatGPT在多项金融基准上超越。
  • 通用模型追赶的三大技术驱动:①上下文窗口从GPT-3的2K token扩展至百万级token,使模型可直接在提示中读取数百页文档;②推理模型(Reasoning Models)在推理时进行扩展思考,逐步解决问题;③模型推理效率提升、成本下降,使持续迭代的通用模型成为更优选择。
  • RAG(检索增强生成)技术方案:在查询时检索相关文档片段,将其注入提示词而非训练进模型权重。代码示例展示了使用OpenAI API实现最小化RAG的流程:通过向量存储进行相似度搜索,将检索结果与问题组合成提示词,调用gpt-5生成回答。优势在于知识库可随时更新而无需重新训练。
  • 上下文工程(Context Engineering):将系统提示、相关数据、格式指南等精心组装为提示包,使模型在推理时获得完整上下文。核心思想是"好的提示词是上下文的精心组装",而非依赖模型内部权重记忆。
  • 不修改权重的定制技术栈:包括RAG、上下文工程、Agent技能等,这些技术通过外部机制而非权重调整实现模型行为定制,降低了维护成本和迭代周期。

行业启示

  • 技术选型策略转变:企业应优先评估RAG、上下文工程和Agent技能等轻量级方案,仅在特定场景(如极端低延迟需求、数据隐私限制、模型行为深度定制)下才考虑微调,避免过度投入权重训练。
  • 通用模型迭代速度重塑竞争格局:前沿模型每6-12个月的性能跃升使微调模型面临"发射即落后"的风险,企业需建立持续评估通用模型能力的机制,动态调整技术路线。
  • AI工程化重心转移:行业正从"模型训练工程"转向"上下文与检索工程",掌握RAG架构设计、向量存储优化、提示工程等技术栈将成为AI应用开发的核心竞争力。

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

Fine-tuning 微调 RAG 检索增强生成 Agent Agent LLM 大模型 Legal AI 法律AI