A Survey of Large Language Models
A Survey of Large Language Models
Section titled “A Survey of Large Language Models”⚠️ AI 生成 · 建议对照原文 本页为自动整理的学习笔记;关键数据与引用如需引用,请回查 PDF / 官方版本。
学习档位 中文笔记
类型 文献 · 更新 2026-07-19
中文学习笔记(自动生成,需核验)
Section titled “中文学习笔记(自动生成,需核验)”Topic: application-domains · Tier: foundational · Year: 2026 · Venue: —
Evidence level: partial · 本地全文: 是 · 建议阅读: ~90 分钟
Paper: https://arxiv.org/abs/2303.18223
Code: —
Generator: grok
为什么值得读
Section titled “为什么值得读”作为全面综述,系统梳理了从统计/神经语言模型到预训练再到大语言模型(LLM)的技术演化、涌现能力、四大核心技术方向(预训练、适应调优、利用与能力评估)、资源与未来问题,对理解ChatGPT等里程碑及整个AI范式转变极具参考价值。
本文系统综述了大语言模型的背景、关键发现与主流技术(聚焦预训练、适应调优、利用与能力评估),并总结开发资源与未来方向。
如何使机器掌握人类语言智能(理解、生成与复杂任务求解),从传统语言模型演化到大规模参数的预训练语言模型,解释缩放带来的性能提升与涌现能力(如上下文学习),并系统化LLM的关键技术与评估。
自然语言处理基础、语言模型概念(n-gram、词向量)、Transformer架构与自注意力、预训练语言模型(如ELMo、BERT、GPT系列)及迁移学习范式。
- 综述LLM近期进展,介绍背景、关键发现与主流技术
- 聚焦四大方面:预训练、适应调优、利用与能力评估
- 总结开发LLM的可用资源
- 讨论剩余问题与未来方向
- 提供从统计LM到LLM的演化视角与任务求解能力跃迁分析
作为综述论文:先回顾语言模型四代演化(统计LM→神经LM→预训练LM→大语言模型);再围绕预训练、适应调优、利用、能力评估四大方面梳理技术;最后总结资源并讨论未来问题。重点强调模型缩放导致涌现能力及ChatGPT等应用的影响。
关键模块和设计取舍
Section titled “关键模块和设计取舍”四大核心方面:1)预训练(在大规模语料上预训练Transformer);2)适应调优(adaptation tuning,用于对齐与下游适配);3)利用(utilization,如提示与上下文学习);4)能力评估(capacity evaluation)。设计取舍包括:缩放模型/数据规模以获得涌现能力(如in-context learning,小模型如BERT不具备),从固定任务求解转向通用任务求解与提示接口;强调研究与工程界限模糊,需大规模数据处理与分布式训练经验。
数据集、实验设置与指标
Section titled “数据集、实验设置与指标”作为综述论文,未报告具体新数据集、实验设置或量化指标;主要回顾文献中的缩放定律、涌现能力等发现。待来源核验
主要结果(需原文证据)
Section titled “主要结果(需原文证据)”模型缩放(参数规模等)可提升下游任务容量(遵循缩放定律);当参数规模超过一定水平时,不仅性能显著提升,还涌现小规模模型不具备的特殊能力(如GPT-3的in-context learning,而GPT-2表现不佳);ChatGPT等基于LLM的对话应用吸引广泛关注并引发arXiv相关论文激增;LLM可在一定程度上作为通用语言任务求解器,推动NLP/IR/CV等范式转变。无具体数值实验对比。
局限、失败场景与适用边界
Section titled “局限、失败场景与适用边界”剩余问题与未来方向在文中讨论(具体内容待来源核验);当前LLM训练需大量工程实践经验;人类需理解其工作方式并以LLM可遵循的方式格式化任务;研究与工程界限模糊;从语言模型到复杂任务求解的思维跃迁仍需深入理解;AGI可能性引发再思考但边界未明确。
与前序 / 同期 / 后续方法的关系
Section titled “与前序 / 同期 / 后续方法的关系”前序:统计语言模型(1990s,n-gram、马尔可夫假设,用于IR/NLP但受维度诅咒);神经语言模型(分布式表示、word2vec、RNN/MLP);预训练语言模型(ELMo biLSTM、BERT双向Transformer、GPT系列、BART等,“预训练+微调”范式)。同期/后续:缩放探索(GPT-3 175B、PaLM 540B等)导致涌现能力并命名LLM;ChatGPT/GPT-4等推动对话与AGI讨论;与传统任务特定求解到通用求解的跃迁相关。
官方代码与复现建议
Section titled “官方代码与复现建议”官方GitHub:https://github.com/RUCAIBox/LLMSurvey;中文书链接:lmbook-zh.github.io。建议从仓库获取最新资源与更新(文中标注Version v18,major update on March 7, 2026)。复现需关注大规模训练实践而非单一代码。
推荐阅读顺序
Section titled “推荐阅读顺序”先读摘要与引言(演化与动机);再看图1-2(论文趋势与四代LM演化);然后按四大方面(预训练→适应调优→利用→能力评估)深入;最后资源与未来方向。关注关键术语如emergent abilities、in-context learning。
- Q: LLM与小规模PLM(如BERT)的主要区别是什么? A: 当参数规模超过一定水平时,LLM不仅性能提升,还涌现特殊能力(如in-context learning),而小模型不具备。
- Q: 语言模型发展的四个主要阶段是什么? A: 统计语言模型(SLM)、神经语言模型(NLM)、预训练语言模型(PLM)、大语言模型(LLM)。
- Q: 本综述聚焦的LLM四大主要方面是什么? A: 预训练(pre-training)、适应调优(adaptation tuning)、利用(utilization)、能力评估(capacity evaluation)。
- Q: 什么是涌现能力(emergent abilities)的例子? A: 如GPT-3可通过上下文学习解决少样本任务,而GPT-2表现不佳。
- Q: ChatGPT发布后对相关论文数量有何影响? A: arXiv上包含“large language model”的论文平均每日从0.40篇激增到8.58篇。
- page 1 Abstract: in this survey, we review the recent advances of LLMs by introducing the background, key findings, and mainstream techniques. In particular, we focus on four major aspects of LLMs, namely pre-training, adaptation tuning, utilization, and capacity evaluation. Furthermore, we also summarize the available resources for developing LLMs and discuss the remaining issues for future directions.
- page 1 Abstract: when the parameter scale exceeds a certain level, these enlarged language models not only achieve a significant performance improvement, but also exhibit some special abilities (e.g., in-context learning) that are not present in small-scale language models (e.g., BERT).
- page 1-2 Introduction: GitHub link: https://github.com/RUCAIBox/LLMSurvey • Chinese book link: lmbook-zh.github.io
- page 2 Fig.1 caption: A sharp increase occurs after the release of ChatGPT: the average number of published arXiv papers that contain “large language model” in title or abstract goes from 0.40 per day to 8.58 per day
- page 3: these large-sized PLMs display different behaviors from smaller PLMs (e.g., 330M-parameter BERT and 1.5B-parameter GPT-2) and show surprising abilities (called emergent abilities [31]) in solving a series of complex tasks. For example, GPT-3 can solve few-shot tasks through in-context learning, whereas GPT-2 cannot do well.
Discovery evidence
Section titled “Discovery evidence”- topic:
llm-language-reasoning - sources:
openalex - retrieved_at: 2026-07-20
- query: large language model reasoning robotics planning
- doi:
10.1007/s11704-026-60308-3 - score_total: 65
- suggested_tier:
recent
Relevance
Section titled “Relevance”(no prose relevance explanation — numeric score only or HTTP source)
Snippets
Section titled “Snippets”(no snippet evidence in candidate pool)
延伸解读与背景补充
Section titled “延伸解读与背景补充”生成:2026-07-21 · 来源条数 2 · 模型
heuristic· 需人工核验数字
围绕「A Survey of Large Language Models」的核心问题与动机(待结合全文核验)。
方法要点补强
Section titled “方法要点补强”- 见原文方法章节;以下为基于摘要/摘录的要点提示。
- 1 …
与相近工作的关系
Section titled “与相近工作的关系”与相近工作的关系待核验;请对照 related work。
- 勿仅凭摘要推断未给出的数值指标。
- 这篇工作的输入/输出表示是什么?(A Survey of Large Language Models)
- 训练目标与评测协议各是什么?
- 主要失败模式或局限是什么?
外部解读索引
Section titled “外部解读索引”- [2303.18223] A Survey of Large Language Models — 2026-07-21 — 官方摘要/二次页面(自动抓取)
- [2303.18223] A Survey of Large Language Models — 2026-07-21 — 官方摘要/二次页面(自动抓取)
方法结构(重绘)
Section titled “方法结构(重绘)”flowchart LR A["输入 / 观测"] --> B["表示 / 编码"] B --> C["推理 / 解码"] C --> D["输出 / 动作或检测"] %% method sketch for: A Survey of Large Language Models方法结构示意(重绘;细节以原论文为准,待 PDF 核验)。
论文摘录图/表
Section titled “论文摘录图/表”
来源:原论文约 p.2(arch);学习用途摘录。

来源:原论文约 p.8(table);学习用途摘录。
英文自动分析(可折叠)
Section titled “英文自动分析(可折叠)”展开英文 Paper Card / AI deep analysis
Paper Card
Section titled “Paper Card”| Field | Content |
|---|---|
| Year | 2026 |
| Authors | Wayne Xin Zhao, Kun Zhou, Junyi Li, Tianyi Tang, Xiaolei Wang, Yupeng Hou, Beichen Zhang, Yingqian Min, Junjie Zhang, Zican Dong, Yifan Du, Yifan Du |
| arXiv | 2303.18223 |
| DOI | 10.1007/s11704-026-60308-3 |
| Topics | application-domains, llm-language-reasoning |
| Paper | https://arxiv.org/abs/2303.18223 |
原文摘录与素材(可折叠)
Section titled “原文摘录与素材(可折叠)”展开 Extract / Selections / Local assets
Selections
Section titled “Selections”application-domains: tier=foundational rank=1 score=53 — auto refresh 2026-07-19 sources=openalex | promoted watch->foundational for coverage fillllm-language-reasoning: tier=recent rank=5 score=65 — auto refresh 2026-07-19 sources=openalex | promoted watch->recent for coverage fill
Extract excerpt
Section titled “Extract excerpt”(no PDF text available; metadata-only card)