📖 AI Glossary · manually curated

AI Glossary,from concepts to practice

Plain-language explanations of LLM & AI terms: basics, architecture, training, inference, applications, multimodal and governance, cross-linked and tied to model price data.

102
Terms
7
Categories
2026-08-10
Last curated

Basics

19 terms

Essential terms for understanding AI and large language models

📘Basics
大语言模型(LLM)

A deep learning model pretrained on massive text, good at understanding and generating natural language.

5Read more
📘Basics
通用人工智能(AGI)

Artificial intelligence that matches or exceeds human ability across nearly all cognitive tasks.

3Read more
📘Basics
提示词

The question, instruction or example text a user sends to an AI model.

4Read more
📘Basics
Token(词元)

The smallest unit of text a model processes; it can be a word, subword or character.

3Read more
📘Basics
上下文窗口

The maximum number of tokens a model can process in one request.

3Read more
📘Basics
幻觉

Model output that sounds plausible but is actually wrong or fabricated.

3Read more
📘Basics
温度

A parameter controlling output randomness: higher is more creative, lower is more deterministic.

2Read more
📘Basics
模型参数

The learnable numbers inside a model, usually measured in billions (B).

3Read more
📘Basics
生成式 AI

AI that creates content such as text, images, video and code.

3Read more
📘Basics
深度学习

A machine learning approach where multi-layer neural networks learn features and patterns from data automatically.

3Read more
📘Basics
神经网络

A computational model of many interconnected "neurons" that can approximate complex functions.

3Read more
📘Basics
对齐

The process of steering model behavior toward human intent, values and safety requirements.

4Read more
📘Basics
基准测试

Standardized tasks and scoring used to compare model capabilities quantitatively.

3Read more
📘Basics
开源模型

Models with publicly available weights that can be freely downloaded and deployed.

3Read more
📘Basics
闭源模型

Models served only through APIs, with weights kept private.

3Read more
📘Basics
少样本学习

Giving a few examples in the prompt so the model can generalize to the task.

3Read more
📘Basics
零样本学习

Asking the model to perform an unseen task from the description alone, without examples.

3Read more
📘Basics
知识截止

The cutoff date of a model's training data; events after it are unknown to the model.

3Read more
📘Basics
推理能力

A model's ability to reason logically, think in steps and solve complex problems.

4Read more

Architecture

15 terms

Model structures: Transformers, attention and mixture-of-experts

🏗️Architecture
Transformer 架构

A neural network architecture based on self-attention; the foundation of modern LLMs.

4Read more
🏗️Architecture
注意力机制

A mechanism that lets a model dynamically focus on important parts of the input.

3Read more
🏗️Architecture
自注意力

Attention computed between all pairs of elements within one sequence.

3Read more
🏗️Architecture
多头注意力

Running several attention heads in parallel to capture diverse relations in different subspaces.

2Read more
🏗️Architecture
位置编码

A method for injecting position information into a model.

2Read more
🏗️Architecture
混合专家(MoE)

An architecture that splits a model into "expert" subnetworks, activating only a few per token.

3Read more
🏗️Architecture
扩散模型

A class of generative models that create data such as images and video by iteratively denoising.

3Read more
🏗️Architecture
编码器-解码器

A two-part architecture where an encoder reads the input and a decoder generates output.

2Read more
🏗️Architecture
KV 缓存

Caching already-computed key-value vectors during inference to avoid recomputation.

3Read more
🏗️Architecture
分词器

The component that splits text into token sequences—the first and last stop for model I/O.

2Read more
🏗️Architecture
自回归

Generating text one token at a time, each predicted from the previous ones.

3Read more
🏗️Architecture
稀疏注意力

Attention approximated by computing only a subset of token pairs.

3Read more
🏗️Architecture
潜空间

The low-dimensional semantic space into which data is compressed and encoded.

3Read more
🏗️Architecture
上下文学习

Learning a new task from examples in the prompt without updating weights.

3Read more
🏗️Architecture
反向传播

The training algorithm that computes gradients backward from output error and updates parameters layer by layer.

3Read more

Training

14 terms

Pretraining, fine-tuning and alignment techniques

🎓Training
预训练

Training a model on massive unlabeled text to learn language patterns.

4Read more
🎓Training
微调

Further training a pretrained model on specific data to adapt it to a task.

4Read more
🎓Training
监督微调(SFT)

Training a model on human-labeled instruction-response data to follow instructions.

4Read more
🎓Training
基于人类反馈的强化学习(RLHF)

An alignment method that trains a reward model from human preferences, then optimizes the policy against it.

4Read more
🎓Training
LoRA(低秩适配)

Efficient fine-tuning that trains only a few low-rank matrices.

3Read more
🎓Training
QLoRA

A memory-efficient fine-tuning scheme combining 4-bit quantization with LoRA.

3Read more
🎓Training
直接偏好优化(DPO)

A simplified alignment method that optimizes the policy directly from preference data, without a reward model.

3Read more
🎓Training
PPO(近端策略优化)

A reinforcement learning algorithm commonly used in RLHF; clipping update steps keeps training stable.

2Read more
🎓Training
指令微调

Training a model on diverse instruction data so it understands and executes task descriptions.

3Read more
🎓Training
持续预训练

Continued pretraining on new corpora to inject domain knowledge or new languages.

3Read more
🎓Training
知识蒸馏

Training a smaller "student" model on the outputs of a larger "teacher" model.

3Read more
🎓Training
过拟合

A model memorizing training data so well that performance on unseen data degrades.

3Read more
🎓Training
训练数据

The massive corpora of text, images and more used to train models.

4Read more
🎓Training
数据增强

Expanding training data via transformations, rewrites and similar techniques.

3Read more

Inference

14 terms

Inference performance, quantization and cost optimization

Inference
推理(模型推理)

Using a trained model to produce output for new input.

4Read more
Inference
延迟

The time from sending a request to receiving the first (or full) response.

3Read more
Inference
吞吐量

The number of requests or tokens a model handles per unit of time.

3Read more
Inference
流式输出

Returning tokens as they are generated, so users need not wait for the full answer.

3Read more
Inference
结构化输出

Making the model output strictly in predefined formats such as JSON.

3Read more
Inference
量化

Representing weights in lower precision (8-bit, 4-bit) to shrink size and speed up inference.

3Read more
Inference
vLLM

A high-performance LLM serving framework known for high throughput and ease of use.

3Read more
Inference
推理时扩展

Spending more compute at inference time in exchange for higher-quality output.

3Read more
Inference
测试时计算

Extra compute allocated at inference time (search, verification, iteration).

3Read more
Inference
API(应用程序接口)

The standard interface for applications to access model services, billed by usage.

4Read more
Inference
速率限制

Provider limits on requests or tokens per unit of time.

3Read more
Inference
批处理

Merging multiple requests into one inference batch to raise throughput.

3Read more
Inference
上下文缓存

Reusing computed results for identical prefix content to cut repeated input cost.

3Read more
Inference
无服务器推理

Inference billed by actual usage, with no GPU cluster to manage.

3Read more

Applications

16 terms

Agent, RAG and prompt engineering practices

🛠️Applications
RAG(检索增强生成)

A technique that lets LLMs retrieve external documents before generating an answer.

4Read more
🛠️Applications
AI 智能体

An AI system that plans, calls tools and completes multi-step tasks autonomously.

4Read more
🛠️Applications
嵌入向量

Mapping text to high-dimensional numeric vectors where similar semantics sit closer together.

4Read more
🛠️Applications
向量数据库

A database built for storing and searching high-dimensional vectors.

3Read more
🛠️Applications
语义搜索

Search based on meaning rather than keyword matching.

3Read more
🛠️Applications
提示工程

The practice of designing prompts to optimize model output.

4Read more
🛠️Applications
思维链

A prompting technique that guides the model to reason step by step before answering.

3Read more
🛠️Applications
ReAct(推理-行动模式)

An agent paradigm where the model alternates think-act-observe cycles.

3Read more
🛠️Applications
函数调用

A model's ability to emit call arguments matching predefined function signatures.

3Read more
🛠️Applications
工具使用

The model calling external tools (search, code execution, databases) to extend capability.

3Read more
🛠️Applications
插件

Pluggable components that extend a model's or app's capabilities.

3Read more
🛠️Applications
记忆机制

The ability of an agent to retain and use information across interactions.

3Read more
🛠️Applications
工作流

Automating multi-step tasks by orchestrating them into fixed pipelines.

3Read more
🛠️Applications
多智能体

A pattern where multiple specialized agents collaborate on complex tasks.

3Read more
🛠️Applications
AI 编程助手(Copilot)

AI assistants embedded in dev tools that help write code.

3Read more
🛠️Applications
聊天机器人

An AI application that provides services through conversation.

3Read more

Multimodal

11 terms

Cross-modal capabilities: image, video and speech

Governance

13 terms

Safety, compliance and the open-source ecosystem

Curated by hand: Term explanations are manually curated from official docs and public sources; the glossary keeps growing. Report mistakes and we will fix them.