Glossary

Filter by tag

50 results

Activation function

Deep Learning

A function inside a neural network layer that helps the model learn complex patterns (not just straight lines).

Agent

Generative AI

A system that can decide actions to reach a goal, sometimes by using tools (search, code, APIs).

AI alignment

Safety

Making sure an AI system’s behavior matches human intent, especially in tricky edge cases.

Anomaly detection

Machine Learning

Finding unusual data points that don’t match the normal pattern (useful for fraud or failures).

Attention

LLMs

A mechanism that helps models focus on the most relevant parts of the input.

AUC (ROC-AUC)

Metrics

A score that summarizes how well a classifier separates positives vs. negatives across thresholds.

Backpropagation

Deep Learning

The learning algorithm that computes how to adjust a neural network’s weights.

Batch

Machine Learning

A small group of training examples processed together in one training step.

Bias (model bias)

Machine LearningSafety

A systematic error in predictions; also used to describe unfair differences in performance across groups.

Classification

Machine Learning

Predicting a category, like spam vs. not spam.

Clustering

Machine Learning

Grouping similar items without labels (unsupervised learning).

Confusion matrix

Metrics

A table that breaks down predictions into true/false positives and true/false negatives.

Context window

LLMs

How much text (tokens) an LLM can consider at once when generating.

Cross-validation

Machine Learning

Testing a model on multiple data splits to better estimate real-world performance.

Data augmentation

Deep Learning

Creating “altered” training examples to improve robustness (common in images/audio).

Dataset

Data

A collection of examples used to train and test a model.

Diffusion model

Generative AI

A generative model that starts from noise and gradually turns it into an image.

Distribution shift

Machine Learning

When the real-world data changes over time and the model’s accuracy drops.

Embedding

LLMs

A vector (list of numbers) that represents meaning so similar items are close in space.

Epoch

Machine Learning

One full pass through the training dataset.

Feature

Machine Learning

An input signal the model uses (like age, price, or word count).

Fine-tuning

Generative AILLMs

Training a pre-trained model further to specialize it for your task or domain.

Foundation model

Generative AI

A large pre-trained model that can be adapted to many tasks via prompting or fine-tuning.

Generalization

Machine Learning

How well a model performs on new data, not just the data it trained on.

Gradient descent

Machine Learning

A method to update model parameters step-by-step to reduce error.

Hallucination

Generative AISafety

When a generative model produces confident output that is incorrect or made up.

Hyperparameter

Machine Learning

A training setting you choose (like learning rate), not something the model learns.

Inference

Machine Learning

Using a trained model to make predictions or generate outputs.

Instruction tuning

LLMs

Training an LLM to follow user instructions more reliably.

Label

Data

The correct answer attached to a training example in supervised learning.

Latency

Product

How long the model takes to respond after you send a request.

Learning rate

Machine Learning

How big each training update step is; too high can be unstable, too low can be slow.

Loss function

Machine Learning

A number measuring how wrong the model is; training tries to minimize it.

Neural network

Deep Learning

A layered model that learns patterns by adjusting many connected weights.

Overfitting

Machine Learning

When a model memorizes training data and performs worse on new data.

Parameter

Machine Learning

A learned value inside a model (like a weight).

Precision

Metrics

Out of predicted positives, how many were actually positive.

Prompt

Generative AI

The instruction and context you give a generative model.

Prompt injection

Safety

A trick where a user tries to override or bypass rules by crafting a malicious prompt.

RAG (Retrieval-Augmented Generation)

Generative AILLMs

Combining document retrieval with generation so the model can answer using retrieved sources.

Recall

Metrics

Out of all real positives, how many the model successfully found.

Regression

Machine Learning

Predicting a number, like price or temperature.

Reinforcement learning

Machine Learning

Learning by trial-and-error using rewards (common in games and robotics).

RLHF

LLMsSafety

Reinforcement Learning from Human Feedback—using human preferences to improve model responses.

Temperature

LLMs

A generation setting: higher temperature usually means more randomness and variety.

Token

LLMs

A small piece of text an LLM processes (a word or part of a word).

Tokenization

LLMs

Splitting text into tokens before a model processes it.

Transformer

LLMs

A neural network architecture built around attention; used by many LLMs.

Validation set

Data

A dataset split used to tune decisions during training (separate from test set).

Weights

Deep Learning

Learned numbers inside a neural network that shape how it makes predictions.