📖 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

大语言模型(LLM)Basics

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

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

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

Read more
提示词Basics

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

Read more
Token(词元)Basics

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

Read more
上下文窗口Basics

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

Read more
幻觉Basics

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

Read more
温度Basics

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

Read more
模型参数Basics

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

Read more
生成式 AIBasics

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

Read more
深度学习Basics

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

Read more
神经网络Basics

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

Read more
对齐Basics

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

Read more
基准测试Basics

Standardized tasks and scoring used to compare model capabilities quantitatively.

Read more
开源模型Basics

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

Read more
闭源模型Basics

Models served only through APIs, with weights kept private.

Read more
少样本学习Basics

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

Read more
零样本学习Basics

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

Read more
知识截止Basics

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

Read more
推理能力Basics

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

Read more

Architecture

15 terms

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

Transformer 架构Architecture

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

Read more
注意力机制Architecture

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

Read more
自注意力Architecture

Attention computed between all pairs of elements within one sequence.

Read more
多头注意力Architecture

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

Read more
位置编码Architecture

A method for injecting position information into a model.

Read more
混合专家(MoE)Architecture

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

Read more
扩散模型Architecture

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

Read more
编码器-解码器Architecture

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

Read more
KV 缓存Architecture

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

Read more
分词器Architecture

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

Read more
自回归Architecture

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

Read more
稀疏注意力Architecture

Attention approximated by computing only a subset of token pairs.

Read more
潜空间Architecture

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

Read more
上下文学习Architecture

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

Read more
反向传播Architecture

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

Read more

Training

14 terms

Pretraining, fine-tuning and alignment techniques

预训练Training

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

Read more
微调Training

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

Read more
监督微调(SFT)Training

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

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

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

Read more
LoRA(低秩适配)Training

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

Read more
QLoRATraining

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

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

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

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

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

Read more
指令微调Training

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

Read more
持续预训练Training

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

Read more
知识蒸馏Training

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

Read more
过拟合Training

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

Read more
训练数据Training

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

Read more
数据增强Training

Expanding training data via transformations, rewrites and similar techniques.

Read more

Inference

14 terms

Inference performance, quantization and cost optimization

推理(模型推理)Inference

Using a trained model to produce output for new input.

Read more
延迟Inference

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

Read more
吞吐量Inference

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

Read more
流式输出Inference

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

Read more
结构化输出Inference

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

Read more
量化Inference

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

Read more
vLLMInference

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

Read more
推理时扩展Inference

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

Read more
测试时计算Inference

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

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

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

Read more
速率限制Inference

Provider limits on requests or tokens per unit of time.

Read more
批处理Inference

Merging multiple requests into one inference batch to raise throughput.

Read more
上下文缓存Inference

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

Read more
无服务器推理Inference

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

Read more

Applications

16 terms

Agent, RAG and prompt engineering practices

RAG(检索增强生成)Applications

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

Read more
AI 智能体Applications

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

Read more
嵌入向量Applications

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

Read more
向量数据库Applications

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

Read more
语义搜索Applications

Search based on meaning rather than keyword matching.

Read more
提示工程Applications

The practice of designing prompts to optimize model output.

Read more
思维链Applications

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

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

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

Read more
函数调用Applications

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

Read more
工具使用Applications

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

Read more
插件Applications

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

Read more
记忆机制Applications

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

Read more
工作流Applications

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

Read more
多智能体Applications

A pattern where multiple specialized agents collaborate on complex tasks.

Read more
AI 编程助手(Copilot)Applications

AI assistants embedded in dev tools that help write code.

Read more
聊天机器人Applications

An AI application that provides services through conversation.

Read 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.