🛡️
Session Flagged

Your session has been flagged for unusual activity.

You can try our app by searching for MultipleChat AI on Google and clicking the multiplechat.ai link to try it free.
Quick verification

Please confirm you're human to continue.


71 terms · updated 2026

The AI Glossary

Plain-English, accurate definitions of every AI term that matters in 2026 — written for people who actually use the tools, not just write about them.

A

Adam (Optimizer)

A widely used optimization algorithm that adapts the learning rate for each parameter, making neural-network training faster and more stable.

AI Agent

An AI system that plans and carries out multi-step tasks on its own — calling tools, reading the results, and deciding what to do next — rather than replying just once.

Alignment

The work of making an AI system's behaviour match human intent and values — why a model follows instructions reliably and refuses harmful requests.

Attention Mechanism

The technique that lets a model weigh how much each part of the input matters when producing each part of the output — the core operation inside every Transformer.

B

Backpropagation

The algorithm that trains neural networks by propagating prediction errors backward to adjust each weight — the engine behind nearly all deep learning.

Batch Normalization

A training technique that normalizes the inputs to each layer, allowing deeper networks to train faster and more stably.

Benchmark

A standardized test used to measure and compare models on tasks like reasoning, knowledge or coding — useful for ranking, but never a full substitute for trying a model on your own work.

BLEU

A long-standing automatic metric for machine translation that scores output by how much its word sequences overlap with human reference translations.

C

Catastrophic Forgetting

The tendency of a neural network to lose previously learned abilities when trained on new data — a key challenge for continually updating models.

Chain of Thought (CoT)

Prompting a model to reason through intermediate steps before giving a final answer, which improves accuracy on multi-step problems.

ChatGPT

OpenAI's conversational assistant, launched in November 2022, which brought instruction-tuned large language models to a mass audience.

Claude

Anthropic's family of large language models, known for long context, strong reasoning, and a safety approach called Constitutional AI.

Context Window

The total amount of text — measured in tokens — that a model can consider in a single call, including the system prompt, conversation history, attachments and the reply being generated.

See: Context Window Visualizer.

Cosine Similarity

A measure of how similar two vectors are by the angle between them — the standard way to compare embeddings in search and RAG.

D

DALL·E

OpenAI's text-to-image model that generates images from natural-language descriptions, popularizing prompt-driven image creation.

Diffusion Model

A generative model that learns to create data by reversing a gradual noising process — the technology behind most modern AI image generation.

DPO (Direct Preference Optimization)

An alignment method that trains a model directly on human preference pairs with a simple classification loss, skipping the separate reward model used in RLHF.

Dropout

A regularization technique that randomly disables neurons during training to prevent overfitting and improve generalization.

E

Embedding

A list of numbers that represents the meaning of a piece of text, so that semantically similar items sit close together in vector space.

F

Few-Shot Prompting

Giving a model a handful of worked examples inside the prompt so it can infer the pattern before answering.

Fine-Tuning

Continuing to train a pre-trained model on additional, specialised data so it adapts to a domain, task or style without being built from scratch.

G

GAN (Generative Adversarial Network)

A generative architecture that trains two networks against each other — a generator that fabricates data and a discriminator that tries to spot the fakes.

Gemini

Google DeepMind's family of natively multimodal models, built to reason jointly over text, images, audio and video.

Grok

xAI's large language model and assistant, integrated with the X platform and positioned around real-time information and a conversational style.

H

Hallucination

When a language model produces text that is fluent and confident but factually wrong or unsupported by its sources.

I

In-Context Learning

A model's ability to learn a task from examples or instructions placed in the prompt at inference time, without any change to its weights.

Instruction Tuning

Fine-tuning a model on many tasks phrased as natural-language instructions, so it follows new instructions well even on tasks it never saw in training.

J

Jailbreak

A prompt crafted to bypass a model's safety training and make it produce content it is meant to refuse.

K

Knowledge Distillation

Training a smaller "student" model to imitate a larger "teacher", transferring much of its capability into a cheaper, faster model.

Knowledge Graph

A structured network of entities and the relationships between them, used to store facts in a form machines can query and reason over.

L

Latency

The delay between sending a prompt and receiving a response. Larger models and longer contexts increase latency — the main speed trade-off in AI products.

Llama

Meta's family of openly released large language models, influential for bringing strong, locally runnable models to researchers and developers.

LLM (Large Language Model)

A neural network trained on very large amounts of text to predict the next token, producing general-purpose language understanding and generation.

LoRA (Low-Rank Adaptation)

A parameter-efficient fine-tuning method that adapts a large model by training small added matrices while keeping the original weights frozen.

LSTM (Long Short-Term Memory)

A recurrent neural network design with gating that can remember information over long sequences — the workhorse of sequence modelling before Transformers.

M

MCP (Model Context Protocol)

An open standard for connecting AI assistants to external tools and data sources through a common interface, so integrations are built once and reused across models.

Mixture of Experts (MoE)

An architecture that routes each input to a few specialised sub-networks instead of the whole model, giving large capacity at a lower cost per query.

Model Card

A short standardized document that reports a model's intended use, performance across groups, and limitations — to encourage transparent, responsible release.

Multimodal

A model that works across more than one type of data — such as text, images, audio or video — in the same system.

N

Nucleus Sampling (Top-p)

A decoding method that samples the next token from the smallest set whose probabilities add up to p, avoiding both repetitive and incoherent text.

P

Perplexity

A standard intrinsic measure of a language model's quality: how surprised it is by held-out text. Lower perplexity means the model predicts real text better.

Prompt

The input text you give a model to elicit a response. Phrasing, examples and structure strongly affect the quality of the output.

Prompt Injection

An attack that smuggles malicious instructions into a model's input — directly or via retrieved content — to override its system prompt or hijack its behaviour.

Q

Quantization

Storing a model's weights at lower numerical precision to cut memory use and speed up inference, usually with little loss in quality.

R

RAG (Retrieval-Augmented Generation)

A technique that retrieves relevant documents at query time and feeds them to a language model, so its answer is grounded in real sources instead of memory alone.

Red Teaming

Deliberately probing a model with adversarial inputs to find harmful, unsafe or policy-violating behaviour before deployment.

Reranking

A second retrieval stage that re-scores an initial set of candidate passages with a more accurate model, pushing the most relevant ones to the top.

ROUGE

A family of automatic metrics for summarization that measure overlap between generated text and human reference summaries.

S

Scaling Laws

Empirical relationships showing how model performance improves predictably with more parameters, data and compute.

Self-Consistency

A reasoning method that samples several chains of thought for the same question and returns the answer most of them agree on.

Sequence-to-Sequence (Seq2Seq)

An encoder–decoder neural architecture that maps one sequence to another — the design that made neural machine translation and, later, generative chat possible.

Speculative Decoding

An inference-speedup technique where a small fast model drafts several tokens and a large model verifies them in parallel — faster output with identical results.

Stable Diffusion

An open, latent-diffusion text-to-image model that made high-quality image generation runnable on consumer hardware.

Streaming

Sending a model's response token by token as it is generated, instead of waiting for the whole answer, so text appears progressively.

System Prompt

Hidden, high-priority instructions that set a model's role, tone and rules before the conversation begins, framing every reply that follows.

T

Temperature

A setting that controls randomness in a model's output: low temperature gives focused, repeatable answers; high temperature gives more varied, creative ones.

Token

The unit a language model actually reads and writes — typically a sub-word fragment, not a whole word. Context limits, pricing and speed are all measured in tokens.

See: AI Token Counter.

Tool Use / Function Calling

Letting a model trigger external functions — search the web, run code, query a database — and use the returned results inside its answer.

Transformer

The neural-network architecture behind virtually every modern large language model, built on a mechanism called self-attention instead of recurrence or convolution.

Tree of Thoughts (ToT)

A reasoning framework that lets a model explore multiple branching solution paths, evaluate them, and backtrack — like deliberate search rather than a single guess.

V

VAE (Variational Autoencoder)

A generative model that learns a probabilistic latent space, letting it both compress data and sample new examples from it.

Vector Database

A database that indexes and searches by embedding similarity instead of exact match, so it can find semantically related content in milliseconds.

Vision Transformer (ViT)

A Transformer applied directly to image patches, showing that the architecture behind language models also excels at computer vision.

W

Watermarking

Embedding a hidden, statistically detectable signal in AI-generated text so it can later be identified as machine-produced.

Whisper

OpenAI's speech-recognition model, trained on a very large, diverse audio set to transcribe and translate speech robustly across languages.

Z

Zero-Shot Prompting

Asking a model to perform a task with no worked examples, relying entirely on the instruction and the model's pre-trained knowledge.

Try them all in one place

Reading about LLMs is one thing — running the same prompt across ChatGPT, Claude, Gemini and Grok is another.

Try MultipleChat Free

Continue learning

See paid plans