📖 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)

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

通用人工智能(AGI)

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

提示词

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

Token(词元)

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

上下文窗口

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

幻觉

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

温度

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

模型参数

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

生成式 AI

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

深度学习

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

神经网络

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

对齐

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

基准测试

Standardized tasks and scoring used to compare model capabilities quantitatively.

开源模型

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

闭源模型

Models served only through APIs, with weights kept private.

少样本学习

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

零样本学习

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

知识截止

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

推理能力

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

Architecture

15 terms

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

Transformer 架构

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

注意力机制

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

自注意力

Attention computed between all pairs of elements within one sequence.

多头注意力

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

位置编码

A method for injecting position information into a model.

混合专家(MoE)

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

扩散模型

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

编码器-解码器

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

KV 缓存

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

分词器

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

自回归

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

稀疏注意力

Attention approximated by computing only a subset of token pairs.

潜空间

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

上下文学习

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

反向传播

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

Training

14 terms

Pretraining, fine-tuning and alignment techniques

Inference

14 terms

Inference performance, quantization and cost optimization

Applications

16 terms

Agent, RAG and prompt engineering practices

RAG(检索增强生成)

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

AI 智能体

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

嵌入向量

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

向量数据库

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

语义搜索

Search based on meaning rather than keyword matching.

提示工程

The practice of designing prompts to optimize model output.

思维链

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

ReAct(推理-行动模式)

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

函数调用

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

工具使用

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

插件

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

记忆机制

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

工作流

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

多智能体

A pattern where multiple specialized agents collaborate on complex tasks.

AI 编程助手(Copilot)

AI assistants embedded in dev tools that help write code.

聊天机器人

An AI application that provides services through conversation.

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.