AI Glossary
Key terms and concepts in artificial intelligence and machine learning.
A2A
Agents & WorkflowsAgent2Agent (A2A) is an open protocol developed by Google that enables AI agents built on different frameworks to communicate, delegate tasks, and coordinate with each other without sharing internal memory or proprietary logic.
Activation Function
Models & ArchitecturesA mathematical function applied to a neuron's output that introduces non-linearity, enabling neural networks to learn complex patterns.
AdaBoost (Boosting)
FoundationsThe original boosting algorithm that trains a sequence of weak classifiers, reweighting misclassified examples after each round so subsequent models focus on the hardest cases.
Adam Optimizer
Training & InferenceAn adaptive learning rate optimization algorithm that maintains per-parameter learning rates based on first and second moment estimates of gradients.
Adapter Layers
Training & InferenceA PEFT method that inserts small trainable neural modules into a frozen pretrained model, allowing task-specific adaptation without updating the full network.
ADK
Systems, Tools & SafetyGoogle’s Agent Development Kit, a framework for building, orchestrating, evaluating, and deploying tool-using and multi-agent systems.
Agent Harness
Agents & WorkflowsThe runtime scaffolding around an AI model that turns it into an agent by managing tools, state, permissions, context, execution loops, and logs.
Agent Orchestration
Agents & WorkflowsThe coordination layer that manages how multiple AI agents work together, routing tasks between them, handling dependencies, and combining their outputs into a coherent result.
Agentic AI
Agents & WorkflowsAI systems that can autonomously plan, make decisions, and take actions across multiple steps to accomplish complex goals with minimal human intervention.
Agentic Workflows
Agents & WorkflowsMulti-step AI processes where a model autonomously plans, executes, and adapts a sequence of actions - calling tools, making decisions, and handling errors - to complete a complex task without human intervention at each step.
AGI
FoundationsArtificial General Intelligence: a hypothetical AI system able to learn, reason, adapt, and perform economically or cognitively valuable tasks across domains at roughly human-level or beyond.
AI Agent
Agents & WorkflowsAn LLM-based system that can autonomously plan multi-step tasks, use external tools, and take actions in the real world to achieve specified goals.
AI Code Review
Systems, Tools & SafetyThe use of AI models to automatically analyze code changes in pull requests, identifying bugs, security vulnerabilities, style violations, and logic errors before human reviewers see them.
AI Memory
FoundationsThe ability of an AI assistant to retain information about a user across conversations, including preferences, context, and past interactions, enabling more personalized responses over time.
AIME
FoundationsThe American Invitational Mathematics Examination - a prestigious high school math competition whose problems are used as a benchmark for evaluating AI mathematical reasoning capabilities.
Algorithm
FoundationsA finite sequence of well-defined instructions for solving a problem or performing a computation.
Anthropic
Systems, Tools & SafetyAI safety company and creator of the Claude family of large language models, founded by former OpenAI researchers.
API
FoundationsApplication Programming Interface - a defined set of rules and protocols that allows different software systems to communicate with each other.
API Gateways
Systems, Tools & SafetyA network entry point that sits in front of backend services and centralizes cross-cutting concerns such as routing, authentication, rate limiting, transformation, and observability.
Approximate Nearest Neighbor
Language, Vision & RetrievalAn algorithm that finds points approximately closest to a query in high-dimensional space, trading small accuracy loss for dramatically faster search over large datasets.
Artificial Analysis
Systems, Tools & SafetyAn independent platform that benchmarks AI models and inference providers across intelligence, performance, price, speed, and latency with standardized methodology.
Artificial Intelligence
FoundationsThe field of computer science focused on building systems that can perform tasks typically requiring human intelligence, including reasoning, learning, perception, and decision-making.
Artificial Relevance
Language, Vision & RetrievalWhen an AI system returns results that appear semantically related but fail to match the user's actual intent, common in vector search where mathematical similarity scores high but genuine usefulness scores low.
Attention Mechanism
Models & ArchitecturesA technique that allows neural networks to focus on relevant parts of the input when producing each element of the output.
Autonomous AI
FoundationsAI systems that operate and make decisions independently without requiring human approval for each action, raising significant questions about oversight, safety, and accountability.
Autoscaling
Systems, Tools & SafetyThe automatic adjustment of compute capacity in response to changing workload demand, balancing performance, availability, and infrastructure cost.
Backpressure
Systems, Tools & SafetyA mechanism by which a slower downstream component signals an upstream producer to reduce or pause work, preventing queues and resources from growing without bound.
Backpropagation
FoundationsAn algorithm for computing gradients of the loss function with respect to each weight in a neural network by applying the chain rule layer by layer.
Batch Normalization
Models & ArchitecturesA technique that normalizes the inputs of each layer in a neural network across the current mini-batch, stabilizing and accelerating training.
Beam Search
Language, Vision & RetrievalA decoding algorithm that generates text by keeping track of the top K most probable partial sequences at each step, balancing output quality against the cost of exploring all possible completions.
Benchmark
FoundationsA standardized test or evaluation used to measure and compare the performance of AI models on specific tasks like reasoning, coding, math, or language understanding.
BERT
Language, Vision & RetrievalA transformer-based language model developed by Google that learns bidirectional representations of text, meaning it considers both left and right context simultaneously to understand word meaning.
Bi-Encoder
Language, Vision & RetrievalA model architecture that independently encodes queries and documents into separate embeddings for fast similarity comparison, used for initial retrieval at scale.
Bias-Variance Tradeoff
FoundationsThe fundamental tension in machine learning between a model being too simple to capture patterns (high bias) and too complex, fitting noise instead of signal (high variance).
Bidirectional Influence
FoundationsThe mutual shaping that occurs between an AI model and a user over extended interaction, where each adapts to the other's patterns until the line between influencer and influenced becomes unclear.
Binary
FoundationsA compiled, executable file that a computer can run directly, as opposed to source code that must be interpreted or compiled first.
BLEU Score
FoundationsA metric that measures how closely a machine-generated text matches one or more human reference translations, calculated by comparing overlapping word sequences (n-grams) between the output and reference.
BM25
Language, Vision & RetrievalA ranking function used in information retrieval that estimates document relevance based on term frequency with diminishing returns and document length normalization.
Boosting (Ensemble Methods)
FoundationsA family of ensemble learning techniques that combine many weak learners sequentially, where each new model focuses on correcting the mistakes of the previous ones.
Byte Pair Encoding
FoundationsA subword tokenization algorithm that builds a vocabulary by iteratively merging the most frequent adjacent byte or character pairs in a corpus, used by most modern language models to split text into tokens.
C2PA
Systems, Tools & SafetyThe open standard behind Content Credentials, attaching signed provenance metadata that shows where digital media came from and how it changed.
Chain of Thought
FoundationsA prompting and reasoning technique where an AI model generates intermediate steps before arriving at a final answer, improving accuracy on complex tasks.
Chatbot
FoundationsA software application that uses AI to simulate human-like conversation through text or voice, ranging from rule-based scripts to modern LLM-powered assistants.
ChatGPT
Systems, Tools & SafetyOpenAI's conversational AI product that provides a chat interface to GPT models, widely credited with bringing large language models to mainstream public awareness.
Chinchilla Scaling Law
FoundationsA 2022 DeepMind finding that optimal language model training requires scaling training tokens proportionally with model parameters - roughly 20 tokens per parameter - overturning the prior assumption that larger models always outperform smaller ones given the same compute budget.
Chunking
Language, Vision & RetrievalThe process of dividing large documents into smaller, semantically coherent pieces suitable for embedding and retrieval in RAG systems.
Citation
Language, Vision & RetrievalThe practice of attributing specific claims in an LLM-generated answer to their source documents, enabling verification and building trust.
Claude Code
Systems, Tools & SafetyAnthropic's agentic coding tool that runs in the terminal, capable of reading, writing, and executing code across entire codebases with human oversight.
Claude Code Review
Systems, Tools & SafetyAn AI-powered code review tool by Anthropic that dispatches multiple agents in parallel to analyze pull requests for bugs, security issues, and logic errors, with a verification layer to filter false positives before surfacing findings.
Claude Fable 5
Models & ArchitecturesAnthropic's public Mythos-class model for long, complex work, with hard safety fallbacks for high-risk domains and premium frontier pricing.
Claude Haiku 4.5
Models & ArchitecturesAnthropic's fastest model released in October 2025, achieving 90% of Sonnet 4.5's performance on agentic coding at lower cost.
Claude Opus 4.5
Models & ArchitecturesAnthropic's November 2025 flagship model achieving 80.9% on SWE-bench with 50-75% reduction in tool calling errors.
Claude Opus 4.6
Models & ArchitecturesAnthropic's February 2026 flagship with 1M context window, 80.8% on SWE-bench, 68.8% on ARC-AGI-2, and the highest Terminal-Bench 2.0 score among all frontier models.
Claude Opus 4.7
Models & ArchitecturesAnthropic’s premium generally available frontier model for difficult coding, tool-using, and long-running agentic work.
Claude Opus 4.8
Models & ArchitecturesAnthropic's May 2026 Opus upgrade for long-horizon agentic coding, dynamic workflows, effort control, and faster premium inference.
Claude Opus 5
Models & ArchitecturesAnthropic's July 2026 flagship model with five effort levels, a narrow independent Intelligence Index lead, and strong coding and knowledge-work results at a lower task cost than Fable 5.
Claude Sonnet 4.5
Models & ArchitecturesAnthropic's September 2025 model marketed as the best coding model and best for agents, achieving 77.2% on SWE-bench and 100% on AIME with Python.
Claude Sonnet 4.6
Models & ArchitecturesAnthropic's February 2026 mid-tier model achieving 79.6% on SWE-bench and 72.5% on OSWorld, matching near-flagship performance at $3/$15 per million tokens.
Claude Sonnet 5
Models & ArchitecturesAnthropic's June 2026 agentic Sonnet model, combining a 1M-token context window, near-Opus performance, and lower production pricing.
Clustering
FoundationsAn unsupervised learning technique that groups data points into clusters based on similarity, without predefined labels, revealing natural structure in data.
Code Reviewer
Systems, Tools & SafetyA person or tool responsible for examining code changes before they are merged, checking for bugs, security issues, style violations, and whether the implementation matches the intended design.
CodeRabbit
Systems, Tools & SafetyAn always-on AI code review platform that automatically analyzes every pull request using 40+ integrated linters, security analyzers, and context-aware AI to provide inline feedback without human prompting.
Codex
Systems, Tools & SafetyOpenAI's asynchronous coding agent that runs tasks in cloud sandboxes, designed for parallel software engineering work like writing features, fixing bugs, and running tests.
Cognitive Computing
FoundationsA category of AI systems designed to simulate human thought processes by combining machine learning, natural language processing, and reasoning.
Cold Start
Training & InferenceThe initial delay when a system or service must initialize from scratch before it can handle requests, common in serverless and containerized deployments.
Computer Vision
FoundationsA field of AI that enables machines to interpret and extract meaningful information from images, video, and other visual inputs.
Context Fusion
Language, Vision & RetrievalThe process of combining structured knowledge from a knowledge graph with unstructured text from RAG retrieval into a unified context for LLM generation.
Context Rot
Language, Vision & RetrievalThe phenomenon where large language model performance degrades as the input context grows longer, with the model becoming less accurate at retrieving and reasoning over information in large prompts.
Context Window
Language, Vision & RetrievalThe maximum number of tokens a language model can process at once, which limits how much retrieved content can be included alongside a query.
Convolutional Embedding
Language, Vision & RetrievalA dense vector representation of input data produced by passing it through a convolutional neural network, capturing learned spatial features in a fixed-size numeric form suitable for downstream tasks like similarity search, classification, or retrieval.
Convolutional Neural Network
Language, Vision & RetrievalA neural network architecture that uses convolutional layers to automatically learn spatial hierarchies of features, primarily used for image and video analysis.
Coreference Resolution
Language, Vision & RetrievalThe task of identifying all expressions in a text that refer to the same real-world entity and grouping them into coreference clusters.
Cosine Similarity
FoundationsA measure of similarity between two vectors based on the cosine of the angle between them, ranging from -1 (opposite) to 1 (identical direction), widely used to compare text embeddings.
Cross-Encoder
Language, Vision & RetrievalA model architecture that jointly encodes a query-document pair to compute a relevance score, offering higher accuracy than bi-encoders but at greater computational cost.
Cross-Entropy
Training & InferenceA loss function that measures the difference between a model's predicted probability distribution and the true distribution, widely used for classification tasks.
CUDA
Systems, Tools & SafetyNVIDIA's parallel computing platform and API that allows developers to use NVIDIA GPUs for general-purpose processing, forming the backbone of most AI training and inference workflows.
Cursor
Systems, Tools & SafetyAn AI-native code editor from Anysphere that combines VS Code, multi-model coding assistance, and agentic workflows.
Cypher
Language, Vision & RetrievalA declarative graph query language created for Neo4j that uses ASCII-art syntax to represent and match graph patterns.
DALL-E
Models & ArchitecturesOpenAI's family of text-to-image models that generate images from natural language descriptions. DALL-E 3 improved prompt adherence and text rendering, but it is now a previous-generation model in OpenAI's API docs.
Data Augmentation
FoundationsA regularization technique that artificially expands the training dataset by applying label-preserving transformations to existing examples, forcing the model to learn invariances.
Data Labeling
FoundationsThe process of annotating raw data with meaningful tags or labels so that machine learning models can learn from it during supervised training.
Decision Tree
FoundationsA supervised learning algorithm that splits data into branches based on feature values, forming a tree-like structure of if-then decisions that leads to a prediction at each leaf.
Deep Learning
FoundationsA subset of machine learning that uses neural networks with many layers to learn complex patterns and representations from large amounts of data.
DeepSeek R1
Models & ArchitecturesOpen-weight reasoning model released in January 2025, achieving 97.3% on MATH-500 and proving frontier AI doesn't require massive budgets.
DeepSeek V3
Models & ArchitecturesOpen-weight MoE model with updated version V3-0324 scoring 81.2% on MMLU-Pro and ranking 5th on LMArena leaderboard.
DeepSeek V4
Models & ArchitecturesDeepSeek V4 is DeepSeek's open-weight MoE model family, now released as V4 Flash 0731 and V4 Pro 0813 with 1M-token context and three reasoning modes.
DeepSeek V4 Flash
Models & ArchitecturesDeepSeek V4 Flash is DeepSeek's 284B-parameter, 13B-active open-weight MoE model for fast, lower-cost agents, coding, and 1M-token workloads.
DeepSeek V4 Pro
Models & ArchitecturesDeepSeek V4 Pro is DeepSeek's released 1.6T-parameter, 49B-active open-weight flagship for advanced reasoning, coding, agents, and 1M-token context.
Dense Retrieval
Language, Vision & RetrievalA neural retrieval method that encodes queries and documents as dense vector embeddings and retrieves documents based on vector similarity.
Dependency Parsing
Language, Vision & RetrievalA syntactic analysis task that identifies grammatical relationships between words in a sentence, producing a directed dependency tree.
DFlash
Systems, Tools & SafetyA speculative-decoding architecture that uses a small block-diffusion draft model to propose multiple tokens in parallel for verification by a larger target LLM.
Distributed Tracing
Systems, Tools & SafetyA technique for following an individual request across multiple services and recording the timing and relationships of the work performed at each hop.
Docker Image
Training & InferenceA lightweight, standalone, executable package that includes everything needed to run a piece of software - code, runtime, libraries, and system tools.
Doubao 1.5 Pro
Models & ArchitecturesByteDance's reasoning model with Deep Thinking mode, matching GPT-4o performance at 50x lower cost with 256K context window.
Dropout
Models & ArchitecturesA regularization technique that randomly sets a fraction of neuron activations to zero during each training step, preventing co-adaptation and reducing overfitting.
EAGLE-3
Systems, Tools & SafetyA lossless speculative-decoding method that accelerates LLM generation with a trained draft model using multi-layer target-model features and dynamic draft trees.
Edge AI
Systems, Tools & SafetyRunning artificial intelligence models directly on local devices like phones, cameras, or sensors rather than sending data to the cloud for processing.
ElevenLabs
Models & ArchitecturesAn AI voice synthesis platform that converts text to speech and clones voices using neural audio models. Its Flash v2.5 model achieves approximately 75ms latency, making it the dominant infrastructure layer for real-time voice agents.
Embedding
Language, Vision & RetrievalA learned dense vector representation that maps discrete entities like words or items into a continuous vector space where similar items are closer together.
Emergent Behavior
FoundationsCapabilities or patterns that arise in large AI models without being explicitly trained for, often appearing only above certain scale thresholds.
Entity Linking
Language, Vision & RetrievalThe task of resolving different textual mentions of an entity to a single canonical representation, critical for knowledge graph quality.
Epoch
FoundationsOne complete pass through the entire training dataset during model training.
ERNIE 4.5
Models & ArchitecturesBaidu's open-source multimodal AI model processing text, images, audio, and video, with benchmark wins over GPT-4o and GPT-5 on specific tasks.
Exploding Gradients
Models & ArchitecturesA training problem where gradients grow exponentially large as they propagate backward through many layers, causing weight updates to be enormous and training to diverge.
FAISS
Language, Vision & RetrievalFacebook AI Similarity Search , an open-source library by Meta for efficient similarity search and clustering of dense vectors, optimized for billion-scale datasets.
Feature Engineering
FoundationsThe process of transforming raw data into informative input features that make patterns more accessible to machine learning models.
Feature Extraction
FoundationsThe process of transforming raw input data into a set of informative, non-redundant numeric representations that capture the properties most useful for a downstream machine learning task.
Federated Learning
Training & InferenceA machine learning approach where a model is trained across multiple decentralized devices or servers holding local data, without ever exchanging the raw data itself - only model updates are shared.
Feed-Forward Network
Models & ArchitecturesA simple neural network layer within each transformer block that independently transforms each token's representation through two linear transformations with a non-linear activation in between.
Fine-tuning
Training & InferenceThe process of further training a pretrained model on a smaller, task-specific dataset to adapt it for a particular use case.
FLOP
Systems, Tools & SafetyA floating-point operation: one arithmetic calculation on decimal-like numbers, used as the basic unit for measuring computational work in AI and scientific computing.
Foundation Model
FoundationsA large AI model trained on broad data at scale that can be adapted to a wide range of downstream tasks, serving as the base layer for many AI applications.
Gated Recurrent Unit
Models & ArchitecturesA recurrent neural network architecture introduced in 2014 that uses two gates - a reset gate and an update gate - to control information flow across timesteps, offering similar sequential modeling capability to LSTM with fewer parameters.
Gemini
Models & ArchitecturesGoogle DeepMind's family of multimodal AI models that power Google's AI products across Search, Workspace, Android, and developer APIs.
Gemini 2.5 Flash
Models & ArchitecturesGoogle DeepMind's fast model released in May 2025 with 1M context window and 251 tokens/second output speed.
Gemini 2.5 Pro
Models & ArchitecturesGoogle DeepMind's 2025 flagship with 1M token context window, leading Humanity's Last Exam with 18.8% accuracy.
Gemini 3.1 Pro
Models & ArchitecturesGoogle DeepMind's February 2026 model topping 13 of 16 industry benchmarks with 77.1% on ARC-AGI-2 and 94.3% on GPQA Diamond.
Gemini 3.7 Flash
Models & ArchitecturesGemini 3.7 Flash is Google's GA multimodal model for fast coding and agents, with a 1M-token context window, 64K output, and adjustable thinking.
Gemini Spark
Systems, Tools & SafetyGoogle's 24/7 personal AI agent in the Gemini app, designed to work proactively across connected Google apps and tools under the user's direction.
Generative Adversarial Network
Models & ArchitecturesA framework consisting of two neural networks - a generator and a discriminator - that compete against each other to produce increasingly realistic synthetic data.
GitHub Copilot
Systems, Tools & SafetyAn AI-powered code completion tool developed by GitHub and OpenAI that suggests code inline as you type, integrated into popular editors like VS Code, JetBrains, and Neovim.
GLM 5.2
Models & ArchitecturesZ.ai's June 2026 open-weight GLM model for long-horizon agentic coding, 1M-token context, IndexShare attention, and repository-scale engineering work.
GLM 5.3
Models & ArchitecturesGLM 5.3 is Z.ai's August 2026 reasoning model for frontier coding, long-horizon agents, and cybersecurity, trained by scaling GLM 5.2 post-training.
GLM-4.5
Models & ArchitecturesZhipu AI's open-weight agentic model with 355B total parameters, ranking 3rd globally and excelling at tool use with 90.6% accuracy.
GLM-5
Models & ArchitecturesZ.ai's 744B-parameter open-weight MoE model for agentic engineering, coding, reasoning, and long-horizon tool-use tasks.
Google DeepMind
Systems, Tools & SafetyGoogle's AI research lab formed by merging DeepMind and Google Brain, responsible for AlphaGo, AlphaFold, and the Gemini model family.
GPQA Diamond
FoundationsA benchmark of 198 graduate-level multiple-choice questions in physics, biology, and chemistry that are designed to be unsolvable through internet search, requiring genuine PhD-level expertise.
GPT Image 2
Models & ArchitecturesOpenAI's state-of-the-art image generation and editing model behind ChatGPT Images 2.0, designed for higher-quality visual outputs, image inputs, and production-ready text rendering.
GPT-4.1
Models & ArchitecturesOpenAI's April 2025 API-focused model with a massive 1M token context window and 38.3% on MultiChallenge, beating GPT-4o by 10.5%.
GPT-4o
Models & ArchitecturesOpenAI's fast, cost-effective multimodal flagship model released in May 2024, supporting text, image, and audio with a 128K context window.
GPT-5
Models & ArchitecturesOpenAI's major generational leap released in August 2025, achieving 94.6% on AIME 2025 and 45% fewer factual errors than GPT-4o.
GPT-5.2
Models & ArchitecturesOpenAI's December 2025 model with a 256K context window, 100% AIME 2025 accuracy, and hallucination rate reduced to 6.2%.
GPT-5.4
Models & ArchitecturesOpenAI's flagship model released March 2026, available in standard, Thinking, and Pro variants with a 1 million token context window, native computer use, Tool Search, and significant improvements in reasoning, coding, and factual accuracy.
GPT-5.5
Models & ArchitecturesAn OpenAI frontier model designed for complex real-world work, with strong benchmark performance in agentic coding, computer use, and professional knowledge tasks.
GPT-5.6
Models & ArchitecturesOpenAI's July 2026 frontier model family, comprising the flagship Sol, balanced Terra, and fast, low-cost Luna models.
GPT-oss-120b
Models & ArchitecturesOpenAI's first major open-weight model with 117B parameters and MoE architecture, rivaling proprietary o4-mini performance.
GPU
FoundationsA Graphics Processing Unit - a specialized processor designed for parallel computation, now essential for training and running AI models due to its ability to perform thousands of operations simultaneously.
Gradient Clipping
Training & InferenceA technique that caps gradient magnitudes during training to prevent exploding gradients from destabilizing the optimization process.
Gradient Descent
FoundationsAn optimization algorithm that iteratively adjusts model parameters in the direction that minimizes the loss function.
Graph Embedding
Language, Vision & RetrievalA technique for representing graph nodes as dense vectors that preserve graph structure, enabling similarity search and machine learning over graph data.
Graph Traversal
Language, Vision & RetrievalThe process of systematically visiting nodes in a graph by following edges, used in knowledge graphs to explore relationships and answer multi-hop queries.
GraphRAG
Language, Vision & RetrievalAn architecture pattern that incorporates knowledge graph reasoning alongside vector-based retrieval in RAG systems, pioneered by Microsoft for enterprise search.
Grok 3
Models & ArchitecturesxAI's June 2025 model with 1M context window, beating GPT-4o and Claude 3.5 Sonnet on AIME and GPQA with 1402 Arena Elo.
Grok 4
Models & ArchitecturesxAI's July 2025 model achieving 100% on AIME 2025 and 61.9% on USAMO 2025, with 4-agent parallel collaboration in latest beta.
Grok 4.5
Models & ArchitecturesSpaceXAI's July 2026 coding and agentic model, offering near-Opus performance with aggressive pricing and unusually low token usage.
Grok 4.6
Models & ArchitecturesSpaceXAI's August 2026 frontier model for coding, long-running agents, and knowledge work, with a 500K-token context window and configurable reasoning.
Grounding
Language, Vision & RetrievalThe technique of anchoring LLM responses in factual, retrieved information rather than the model's parametric knowledge, reducing hallucinations.
gRPC
Systems, Tools & SafetyA high-performance remote procedure call framework that uses Protocol Buffers and HTTP/2 to provide strongly typed service-to-service communication, including streaming.
Guardrails
Systems, Tools & SafetySafety constraints and validation layers applied to AI systems to prevent harmful, off-topic, or policy-violating outputs.
Guardrails AI
Systems, Tools & SafetyAn open-source framework and tooling ecosystem for adding input/output validation, risk checks, and structured output controls to LLM applications.
Hallucination
Language, Vision & RetrievalWhen an AI model generates plausible-sounding but factually incorrect or fabricated information with apparent confidence.
Hermes Agent
Agents & WorkflowsAn open-source, multi-provider AI agent from Nous Research that learns from user workflows through persistent memory, self-improving skills, scheduled automation, and messaging gateways.
Higgsfield
Systems, Tools & SafetyAn AI video and image creation platform for generating cinematic clips, ads, product visuals, and social content using multiple leading video models in one workspace.
HNSW
Language, Vision & RetrievalHierarchical Navigable Small World , an efficient graph-based algorithm for approximate nearest neighbor search that builds a multi-layer navigation structure over vectors.
Hugging Face
Systems, Tools & SafetyThe largest open-source AI platform and model hub, hosting over 2 million models, 500,000 datasets, and 1 million demo apps used by 10 million developers.
Hybrid Search
Language, Vision & RetrievalA retrieval approach that combines different search methods, typically keyword-based (BM25) and semantic (dense embedding) search, to leverage the strengths of both.
Hyperparameter
FoundationsA configuration value set before training begins that controls the learning process itself, as opposed to model parameters which are learned from data.
IA3
Training & InferenceInfused Adapter by Inhibiting and Amplifying Inner Activations, a PEFT method that learns small scaling vectors to modulate a frozen model's internal activations.
IAM / Secrets
Systems, Tools & SafetyThe identity and credential controls that determine who can access resources and how sensitive values such as API keys, passwords, and signing keys are stored and delivered.
Inference
Training & InferenceThe process of using a trained model to make predictions on new, unseen data, as opposed to the training phase where the model learns from labeled examples.
Inference-Time Compute
FoundationsAdditional computational effort spent during a model's response generation, such as chain-of-thought reasoning or search, to improve output quality at the cost of speed and resources.
Inkling
Models & ArchitecturesThinking Machines' July 2026 open-weight model, a 975 billion parameter MoE released under Apache 2.0, explicitly positioned as a broad, well-calibrated generalist rather than a benchmark leader.
Kaggle
Systems, Tools & SafetyGoogle's data science and machine learning platform for competitions, datasets, notebooks, models, courses, and community collaboration.
Kimi K2
Models & ArchitecturesMoonshot AI's open-source 1 trillion parameter MoE model with 32B active parameters, outperforming GPT-5 and Claude Sonnet 4.5 on reasoning benchmarks.
Kimi K2.5
Models & ArchitecturesMoonshot AI's January 2026 open-weight multimodal model with vision and agent swarm capabilities, leading on agentic and coding benchmarks.
Kimi K3
Models & ArchitecturesMoonshot AI's July 2026 2.8T-parameter frontier model for long-horizon coding, vision, and 1M-token work, with full open weights promised by July 27.
KL Divergence
FoundationsA measure of how one probability distribution differs from a reference distribution, quantifying the information lost when approximating one distribution with another.
KNN
FoundationsK-Nearest Neighbors - a simple algorithm that classifies a data point based on the majority class of its K closest neighbors in the feature space.
Knowledge Graph
Language, Vision & RetrievalA structured representation of knowledge as entities (nodes) and relationships (edges), often with properties attached to both, enabling logical traversal and multi-hop reasoning over data.
Kubernetes
Systems, Tools & SafetyAn open-source orchestration system that schedules and manages containerized workloads across a cluster, handling placement, health, networking, and lifecycle automation.
KV Cache
Models & ArchitecturesA memory optimization technique in LLM inference that stores previously computed key-value pairs from attention layers, avoiding redundant recalculation when generating each new token.
LangChain
Systems, Tools & SafetyA widely used framework for building LLM applications and agents, with abstractions for models, tools, memory, retrieval, and orchestration.
Language Modeling
Language, Vision & RetrievalThe task of learning a probability distribution over sequences of tokens, enabling a model to predict or generate text.
Large Language Model
Language, Vision & RetrievalA neural network trained on vast amounts of text data that can understand and generate human language with remarkable fluency and versatility.
Latent Space
Models & ArchitecturesA lower-dimensional representation space learned by a model where similar inputs are mapped to nearby points, capturing the essential structure of the data.
Layer Normalization
Models & ArchitecturesA technique that normalizes the inputs across the features of a single training example during a forward pass, stabilizing training and reducing sensitivity to learning rate choice.
Learning Rate
Training & InferenceA hyperparameter that controls how much model weights are adjusted in response to the estimated error during each step of gradient descent optimization.
Lemmatization
Language, Vision & RetrievalThe process of reducing a word to its dictionary base form (lemma) using vocabulary and morphological analysis.
LightGBM (Boosting)
FoundationsA gradient boosting framework by Microsoft that uses leaf-wise tree growth and histogram-based splitting for significantly faster training on large datasets while maintaining competitive accuracy.
Llama 3.1
Models & ArchitecturesMeta's open-weight large language model family released in July 2024, available in 8B, 70B, and 405B parameter sizes with a 128k token context window.
Llama 4 Maverick
Models & ArchitecturesMeta's April 2025 open-weight flagship with 402B total parameters, 1M context window, and multimodal capabilities beating GPT-4o.
Llama 4 Scout
Models & ArchitecturesMeta's April 2025 open-weight model with 109B total parameters and industry-leading 10M token context window.
LMArena
Systems, Tools & SafetyA crowdsourced platform where users compare AI models head-to-head in blind conversations, producing Elo-based rankings that reflect real human preferences.
Load Balancing
Models & ArchitecturesIn Mixture of Experts models, the set of techniques that ensure tokens are distributed evenly across experts during training and inference to prevent expert collapse and maximize model capacity.
Logits
Models & ArchitecturesRaw, unnormalized scores produced by a model before applying softmax or sigmoid to turn them into probabilities.
Long Short-Term Memory
Models & ArchitecturesA recurrent neural network architecture that uses input, forget, and output gates to selectively retain or discard information across long sequences, solving the vanishing gradient problem that made earlier RNNs fail on long-range dependencies.
LoRA
Training & InferenceLow-Rank Adaptation, a PEFT method that fine-tunes large models by learning small low-rank update matrices instead of modifying the full weight matrices.
Loss Function
FoundationsA function that measures the difference between a model's predictions and the actual target values, guiding the optimization process during training.
Lovable
Systems, Tools & SafetyAn AI app-building platform that lets people create full-stack web applications by describing what they want in natural language, then iterating on generated code.
Machine Learning
FoundationsA field of artificial intelligence that enables systems to learn and improve from experience without being explicitly programmed.
Mamba-3
Models & ArchitecturesA state space model architecture published at ICLR 2026 that advances Mamba-2 through trapezoidal discretization, a MIMO formulation for hardware efficiency, and complex-valued dynamics via data-dependent RoPE - delivering stronger state tracking at half the state size of its predecessor.
Maximum A Posteriori
FoundationsA method of estimating model parameters that finds the single most probable value given the observed data and a prior belief, balancing evidence from data with prior assumptions.
MCMC
FoundationsMarkov Chain Monte Carlo - a class of algorithms that sample from complex probability distributions by constructing a Markov chain whose stationary distribution matches the target.
MCP
Agents & WorkflowsModel Context Protocol - an open standard created by Anthropic that defines how AI assistants connect to external data sources, tools, and services through a unified interface.
Merge Queue
Systems, Tools & SafetyA system that batches and sequences pull requests so they can be tested and merged safely at higher throughput.
Message Queues
Systems, Tools & SafetyA buffering and delivery mechanism that decouples producers from consumers by storing messages until downstream workers can process them.
Meta AI
Systems, Tools & SafetyMeta's AI division responsible for the open-source Llama model family, PyTorch, and FAIR research lab.
Midjourney
Systems, Tools & SafetyAn AI image and video generation platform best known for highly stylized, cinematic text-to-image outputs and a creator workflow built around prompts, references, and variations.
MiniMax M2.5
Models & ArchitecturesMiniMax's February 2026 model scoring 80.2% on SWE-Bench Verified, outperforming Claude Opus 4.6 and GPT-5.2 at 1/20th the cost.
MiniMax M2.7
Models & ArchitecturesA large language model released in March 2026 by Chinese AI lab MiniMax that participated in its own training loop, achieving competitive performance on software engineering and research benchmarks compared to GPT-5.3-Codex and Opus 4.6.
MiniMax M3
Models & ArchitecturesMiniMax's June 2026 frontier open-weight model claim combining coding strength, 1M context, native multimodality, and low-cost agentic API access.
Mistral Medium 3
Models & ArchitecturesEuropean AI model achieving 90% of Claude Sonnet 3.7 capabilities while demonstrating cost-efficient alternative to premium models.
Mixture of Experts
Models & ArchitecturesA model architecture that splits computation across multiple specialized sub-networks (experts), activating only a subset for each input to achieve large model capacity at a fraction of the compute cost.
Mixture of Experts Routing
Models & ArchitecturesThe mechanism within a Mixture of Experts model that determines which expert sub-networks process each input token, directly controlling how model capacity is utilized.
MMMU-Pro
FoundationsA rigorous multimodal AI benchmark with college-level questions across six disciplines that tests whether models truly understand visual and textual information together.
Model Collapse
FoundationsA degenerative process where AI models trained on synthetic data generated by other AI models progressively lose diversity and accuracy, converging on a narrow, distorted version of the original data distribution.
Model Distillation
FoundationsA technique where a smaller 'student' model is trained to replicate the behavior of a larger 'teacher' model, preserving much of the performance at a fraction of the size and cost.
MoltBook
Agents & WorkflowsA social network exclusively for AI agents, where autonomous bots interact, post content, and form communities.
MoltBot
Agents & WorkflowsThe intermediate name for the OpenClaw AI agent framework during its transition from ClawdBot.
Multi-Head Attention
Models & ArchitecturesAn extension of attention that runs multiple attention operations in parallel with different learned projections, allowing the model to capture different types of relationships simultaneously.
Multi-Hop Reasoning
Language, Vision & RetrievalAnswering questions that require connecting multiple pieces of information across several reasoning steps, a key strength of knowledge graph-augmented systems.
Multi-Region Serving
Systems, Tools & SafetyRunning a service in multiple geographic regions so requests can be routed to nearby or healthy capacity, improving resilience, latency, and sometimes regulatory control.
Muse Glimmer
Models & ArchitecturesMeta's 30B open-weight multimodal model for local AI agents, coding, tool use, and long-running tasks, with a 131K+ context window and Apache 2.0 license.
Muse Spark
Models & ArchitecturesMeta's proprietary frontier model for coding, multimodal reasoning, tool use, and long-running AI agents; Muse Spark 1.2 has a 1M-token context window and powers Muse Code.
n8n
Systems, Tools & SafetyAn open source workflow automation platform that lets users connect apps, APIs, and AI models through a visual node-based interface, with the option to self-host for full data control.
Named Entity Recognition
Language, Vision & RetrievalAn NLP task that identifies and classifies named entities such as people, organizations, locations, and dates in unstructured text.
Natural Language Processing
Language, Vision & RetrievalA branch of AI focused on enabling computers to understand, interpret, generate, and interact with human language in useful ways.
Nemotron
Models & ArchitecturesNVIDIA's family of open large language models designed for agentic AI workflows, reasoning, and enterprise deployment, built on open-weight base models like Llama and fine-tuned with NVIDIA's training infrastructure.
Nemotron 3 Super
Models & ArchitecturesNVIDIA's March 2026 open-weight reasoning model with 120 billion total parameters and 12 billion active, combining Mamba and transformer layers in a hybrid MoE architecture with a 1 million token context window.
Neo4j
Language, Vision & RetrievalThe most widely used graph database in industry, designed for storing and querying property graphs using the Cypher query language.
Neural Architecture Search
Models & ArchitecturesA set of methods for automatically discovering neural network architectures instead of designing them entirely by hand.
Neural Network
FoundationsA computing system inspired by biological neural networks that learns to perform tasks by considering examples without being explicitly programmed.
NVIDIA
Systems, Tools & SafetyThe semiconductor company whose GPUs became the dominant hardware platform for training and running AI models, making it one of the most valuable companies in the world.
NVIDIA OpenShell
Systems, Tools & SafetyNVIDIA's open-source runtime for running autonomous AI agents inside sandboxed environments with policy controls, inference routing, and kernel-level isolation.
Observability
Systems, Tools & SafetyThe practice of instrumenting a system so operators can infer its internal behavior from emitted telemetry, especially metrics, logs, and traces.
Ollama
Systems, Tools & SafetyAn open-source tool for running large language models locally on personal computers with a simple command-line interface.
Ontology
Language, Vision & RetrievalA formal specification of concepts, categories, and relationships within a domain that defines what types of entities exist and how they can relate to each other.
Open Source
FoundationsSoftware whose source code is publicly available for anyone to view, modify, and distribute, enabling community-driven development and transparency.
Open Weight Model
FoundationsAn AI model whose trained parameters (weights) are publicly released for download and use, but whose training data, code, or methodology may remain proprietary.
OpenAI
Systems, Tools & SafetyAmerican AI research company and creator of ChatGPT, GPT-series models, DALL-E, and Whisper.
OpenAI o3
Models & ArchitecturesOpenAI's reasoning model released in April 2025 with a 200K context window, achieving 88.9% on AIME 2025 and 69.1% on SWE-bench Verified.
OpenAI o4-mini
Models & ArchitecturesOpenAI's smaller reasoning model released in April 2025, achieving 92.7% on AIME 2025 and 99.5% with Python interpreter access.
OpenClaw (ClawdBot)
Agents & WorkflowsOpen-source autonomous AI agent framework originally called ClawdBot, capable of executing real-world tasks via LLMs.
OpenCode
Systems, Tools & SafetyAn open-source AI coding agent from Anomaly that runs in the terminal, desktop app, and IDE extensions, with support for many model providers and MCP tools.
Orchestration Layer
Agents & WorkflowsThe application logic that sits on top of AI models to coordinate their use - managing prompts, tools, memory, and workflows to build complete AI-powered systems.
Overfitting
FoundationsA phenomenon where a model learns the training data too well, including its noise and outliers, resulting in poor performance on unseen data.
P99 / Tail Latency
Systems, Tools & SafetyA way to describe slow-end request latency; P99 is the latency value at which 99% of requests are faster and roughly 1% are slower.
Passive Code Reviewer
Systems, Tools & SafetyA code analysis tool that monitors your work automatically without requiring any action from you, detecting when you go idle and surfacing findings when you return.
Pattern Matching
FoundationsA technique for checking data against a set of predefined patterns or rules, used in programming languages, text processing, and machine learning.
PEFT
Training & InferenceParameter-Efficient Fine-Tuning, a family of methods that adapts large pretrained models by training only a small subset of new or selected parameters instead of updating the full model.
Perceptron
FoundationsThe simplest neural network unit that computes a weighted sum of inputs, adds a bias, and passes the result through an activation function to produce an output.
Perplexity
Systems, Tools & SafetyAn AI company that builds search and productivity tools by orchestrating multiple foundation models, known for its answer engine and the multi-agent Perplexity Computer platform.
Perplexity Computer
Systems, Tools & SafetyA multi-model agentic AI system by Perplexity that orchestrates 19 AI models to autonomously execute complex, long-running workflows - from research to code to media generation - in isolated compute environments.
POS Tagging
Language, Vision & RetrievalThe task of assigning a part-of-speech label - noun, verb, adjective, etc. - to each token in a sentence.
Positional Encoding
Language, Vision & RetrievalA technique that injects information about token position into transformer inputs, since the attention mechanism itself is permutation-invariant and has no inherent notion of sequence order.
Prefix Tuning
Training & InferenceA PEFT method that learns small trainable prefix vectors prepended to a model's internal attention states, steering generation without updating the full model.
Prompt Engineering
Language, Vision & RetrievalThe practice of carefully crafting input text to elicit desired behavior from large language models, including techniques like few-shot examples, chain-of-thought reasoning, and system instructions.
Prompt Injection
FoundationsAn attack where malicious instructions are hidden inside input data to hijack an AI model's behavior, causing it to ignore its original instructions and follow the attacker's instead.
Prompt Tuning
Training & InferenceA PEFT method that learns a small set of trainable virtual prompt embeddings to steer a frozen model toward a task or behavior.
PyTorch
Systems, Tools & SafetyAn open-source machine learning framework developed by Meta AI, known for its Pythonic design, dynamic computation graphs, and dominance in AI research - the framework behind most frontier model development today.
Quantization
Models & ArchitecturesA technique that reduces the numerical precision of a model's weights and activations, shrinking memory usage and speeding up inference with minimal loss in accuracy.
Query Routing
Language, Vision & RetrievalThe process of classifying a user query and directing it to the most appropriate retrieval strategy, such as knowledge graph lookup, RAG search, or hybrid retrieval.
Qwen 3
Models & ArchitecturesAlibaba's April 2025 open-source model family trained on 36 trillion tokens in 119 languages, competitive with DeepSeek R1 and o3-mini.
Qwen 3.5
Models & ArchitecturesAlibaba's February 2026 open-source model family using sparse MoE with 397B total parameters (17B active), supporting 201 languages and a 262K context window while claiming to outperform GPT-5.2 and Claude Opus 4.5 on 80% of benchmarks.
Qwen 3.7
Models & ArchitecturesAlibaba's May 2026 Qwen generation led by the closed-weight Qwen3.7-Max agent model, with preview Plus and expected mid-tier variants forming the broader family.
Qwen 3.8 Max
Models & ArchitecturesAlibaba's August 2026 flagship model: a 2.4T-parameter sparse Mixture-of-Experts system with a 1M-token context window, strong multimodal results, and a mixed coding profile.
RAM
FoundationsRandom Access Memory - the fast, volatile working memory a computer uses to store data that is actively being used or processed.
Random Forest
FoundationsAn ensemble learning method that builds multiple decision trees on random subsets of data and features, then combines their predictions for more accurate and robust results.
Rate Limiting
Systems, Tools & SafetyA mechanism that controls how quickly a client, user, or service can consume an API or other shared resource, protecting capacity and enforcing quotas.
RDF
Language, Vision & RetrievalResource Description Framework , a W3C standard for representing information as subject-predicate-object triples, forming the foundation of the semantic web.
Reasoning
FoundationsThe ability of an AI model to break down complex problems into logical steps, draw conclusions from evidence, and arrive at answers through structured thinking rather than pattern matching alone.
Reciprocal Rank Fusion
Language, Vision & RetrievalA method for combining ranked result lists from different retrieval systems by summing reciprocal rank scores, commonly used to merge BM25 and dense retrieval results.
Recurrent Neural Network
Models & ArchitecturesA neural network architecture with loops that allow information to persist across time steps, designed for processing sequential data.
Recursive Language Model (RLM)
Language, Vision & RetrievalAn inference approach that lets an LLM programmatically examine, decompose, and recursively call itself over snippets of extremely long input, handling contexts up to 100x beyond native window limits.
Regularization
Training & InferenceA set of techniques that constrain model complexity during training to prevent overfitting and improve generalization to unseen data.
Reinforcement Learning
Training & InferenceA machine learning paradigm where an agent learns to make decisions by taking actions in an environment and receiving rewards or penalties.
Relation Extraction
Language, Vision & RetrievalThe NLP task of identifying and classifying semantic relationships between entities mentioned in text, a key step in knowledge graph construction.
ReLU
Models & ArchitecturesThe Rectified Linear Unit activation function, defined as max(0, x), which has become the default non-linearity in modern deep networks due to its simple gradient and computational efficiency.
Reranking
Language, Vision & RetrievalA second-stage ranking process that reorders initially retrieved results using a more computationally expensive but accurate model, typically a cross-encoder.
Residual Connection
Models & ArchitecturesA shortcut that adds a layer's input directly to its output (y = F(x) + x), enabling training of very deep networks by providing a gradient highway that prevents vanishing gradients.
Retrieval Pipeline
Language, Vision & RetrievalThe end-to-end sequence of steps in a RAG system: query processing, document retrieval, reranking, context construction, and LLM generation.
Retrieval-Augmented Generation
Language, Vision & RetrievalAn architecture pattern that reduces LLM hallucination by retrieving relevant documents from an external knowledge base and including them as context before generating a response.
Retry / Timeout Strategies
Systems, Tools & SafetyA set of failure-handling policies that limit how long a request may wait and determine when transient failures should be retried, cancelled, or surfaced to the caller.
RLHF
FoundationsReinforcement Learning from Human Feedback - a training technique where human preferences are used to fine-tune AI models, aligning their outputs with what humans consider helpful, honest, and safe.
Routing Network
Models & ArchitecturesThe learned router in a Mixture of Experts model that scores experts and sends each token to the most suitable subset.
SaaS
FoundationsSoftware as a Service - a delivery model where software is hosted in the cloud and accessed through a browser or API on a subscription basis rather than installed locally.
Sarvam AI
Systems, Tools & SafetyAn Indian AI company building sovereign, full-stack AI infrastructure for Indian languages - including open-source LLMs, speech models, translation, and agentic products across 22 Indian languages.
Self-Attention
Models & ArchitecturesAn attention mechanism where queries, keys, and values all come from the same input sequence, allowing each token to attend to every other token in the sequence including itself.
Semantic Collapse
Language, Vision & RetrievalWhen an AI model loses the ability to distinguish between different or opposing concepts - mapping them to similar representations - causing repetitive outputs, failed negation handling, and retrieval systems that return irrelevant results.
Semantic Search
Language, Vision & RetrievalA search technique that finds results based on the meaning of a query rather than exact keyword matches, typically using vector embeddings and similarity metrics.
Sentiment Analysis
Language, Vision & RetrievalThe automated process of identifying and extracting subjective opinion, emotion, or attitude from text.
Sigmoid
Models & ArchitecturesAn S-shaped activation function that maps any real number to a value between 0 and 1, historically important but largely replaced by ReLU in hidden layers.
Small Language Model (SLM)
FoundationsA language model with roughly 1 billion to 10 billion parameters, designed to run efficiently on edge devices and resource-constrained environments while retaining core NLP capabilities.
Softmax
Models & ArchitecturesA function that converts a vector of real numbers into a probability distribution, where each output is between 0 and 1 and all outputs sum to 1.
SPARQL
Language, Vision & RetrievalA query language for RDF graph databases, similar to SQL but designed for querying data represented as subject-predicate-object triples.
Sparse Model
Models & ArchitecturesA model where only a subset of parameters are activated for any given input, reducing compute requirements while maintaining the capacity benefits of a larger network.
Sparse Retrieval
Language, Vision & RetrievalA retrieval method using high-dimensional sparse vectors based on term frequencies (like BM25 or TF-IDF), where most vector elements are zero.
Speculative Decoding
Training & InferenceAn inference optimization where a small, fast draft model generates candidate tokens that a larger model then verifies in parallel, speeding up generation without changing output quality.
Squash Merge
Systems, Tools & SafetyA Git workflow that combines all commits from a branch into a single commit when merging it into another branch.
Stemming
Language, Vision & RetrievalA rule-based process that strips suffixes from words to reduce them to a common root form, often producing non-dictionary stems.
Stochastic Gradient Descent
Training & InferenceAn optimization algorithm that updates model parameters using the gradient computed on a small random subset (mini-batch) of the training data rather than the entire dataset.
Stop Word Removal
Language, Vision & RetrievalThe practice of filtering out high-frequency function words - such as 'the', 'is', and 'in' - that carry little semantic content.
Streaming / SSE
Systems, Tools & SafetyA way to deliver partial results progressively over a long-lived connection; Server-Sent Events (SSE) is an HTTP-based pattern where the server pushes a sequence of events to a client.
Subword Tokenization
Language, Vision & RetrievalA tokenization strategy that splits words into smaller units to balance vocabulary size with the ability to handle rare and unknown words.
Supervised Learning
FoundationsA machine learning approach where the model learns from labeled training data - input-output pairs where the correct answer is provided - to predict outputs for new, unseen inputs.
SVM
FoundationsSupport Vector Machine - a supervised learning algorithm that finds the optimal boundary (hyperplane) separating data into classes, effective for classification and regression tasks.
Sycophancy
FoundationsThe tendency of AI models to agree with or flatter the user rather than provide accurate, honest, or challenging responses.
SynthID
Systems, Tools & SafetyGoogle DeepMind's imperceptible watermarking system for AI-generated images, video, audio, and text, designed to identify SynthID-marked content without relying on removable metadata.
System Prompt
FoundationsA special instruction given to an AI model before any user input that defines its behavior, personality, constraints, and role for the entire conversation.
Technological Singularity
FoundationsA hypothetical point when accelerating technological change becomes so rapid and far-reaching that the future is difficult to predict from today's world.
Temperature
Language, Vision & RetrievalA parameter that controls the randomness of token sampling during LLM text generation by scaling the logits before applying softmax.
TensorFlow
Systems, Tools & SafetyAn open-source machine learning framework developed by Google Brain, designed for building and deploying ML models across research and production environments, from mobile devices to distributed clusters.
Text Classification
Language, Vision & RetrievalThe task of assigning a predefined category or label to a piece of text based on its content.
Text Mining
Language, Vision & RetrievalThe process of extracting meaningful patterns, trends, and structured information from large volumes of unstructured text using statistical and machine learning techniques.
Text Normalization
Language, Vision & RetrievalThe process of transforming raw text into a consistent, canonical form to reduce variation before further processing.
Text-to-Cypher
Language, Vision & RetrievalThe technique of using LLMs to convert natural language questions into Cypher graph queries, enabling non-technical users to query knowledge graphs.
TF-IDF
Language, Vision & RetrievalA numerical statistic combining term frequency and inverse document frequency to measure how important a word is to a document within a collection.
Throughput
Systems, Tools & SafetyThe amount of useful work a system completes per unit time, such as requests per second, tokens per second, messages per second, or transactions per second.
Token
FoundationsThe basic unit of text that a language model reads and produces. A token is typically a word, part of a word, or a punctuation character, depending on how the model's vocabulary was constructed.
Tokenization
Language, Vision & RetrievalThe process of breaking text into smaller units called tokens, which serve as the fundamental input elements for language models.
Tool Calling
Agents & WorkflowsA capability that allows large language models to invoke external functions, APIs, or tools to perform actions beyond text generation.
Transfer Learning
FoundationsA technique where a model trained on one task is reused as the starting point for a model on a different but related task.
Transformer
Language, Vision & RetrievalA neural network architecture based on self-attention mechanisms that processes input data in parallel, forming the basis of modern large language models.
Triple
Language, Vision & RetrievalThe fundamental unit of knowledge in a graph, expressed as a (subject, predicate, object) statement such as (Alice, WORKS_AT, Acme Corp).
TRM (Tiny Recursive Model)
Models & ArchitecturesSamsung's 7M-parameter recursive reasoning model that outperforms LLMs 10,000x its size on abstract reasoning benchmarks like ARC-AGI.
Turing Test
FoundationsA test of machine intelligence proposed by Alan Turing in 1950, in which a human evaluator tries to distinguish between a machine and a human based on natural-language conversation alone.
Underfitting
FoundationsWhen a model is too simple to capture the underlying patterns in the data, resulting in poor performance on both training and test sets.
Universal Approximation Theorem
Models & ArchitecturesA result showing that a sufficiently wide feed-forward neural network with a suitable non-linear activation can approximate any continuous function on a compact domain to arbitrary accuracy.
Unsupervised Learning
FoundationsA learning setting in which a model extracts structure from unlabeled data instead of matching examples to human-supplied answers.
Vanishing Gradients
Models & ArchitecturesA backpropagation failure mode in which gradient signals shrink across layers or time steps, leaving early parameters with almost no useful update.
Vector Database
Language, Vision & RetrievalA database built to store, index, and search high-dimensional embeddings, returning records whose vectors are closest to a query under a chosen distance metric.
Vectorless Database
Systems, Tools & SafetyAn informal name for a retrieval system that uses document structure, indexes, or model reasoning instead of storing embeddings for nearest-neighbor search.
Vectorless Retrieval
Language, Vision & RetrievalA retrieval method that navigates document structure or explicit indexes with reasoning instead of ranking chunks by embedding similarity.
Vibe Coding
FoundationsA prompt-driven development style in which an AI writes much of the implementation and the developer steers the result through natural language, tests, and review.
Weight Initialization
Models & ArchitecturesThe rule used to choose a neural network’s starting weights so activations and gradients remain in a trainable range.
Windsurf
Systems, Tools & SafetyAn AI-native code editor from Codeium that combines inline completion with agentic, multi-file software engineering tasks.
Word Embeddings
Language, Vision & RetrievalLearned dense vectors that encode word usage in a continuous space, making distributional similarity measurable with geometry.
xAI
Systems, Tools & SafetyThe AI company founded by Elon Musk that develops Grok and the Colossus training supercomputer.
XGBoost (Boosting)
FoundationsA high-performance gradient boosting library that builds accurate tabular models by adding regularized decision trees to correct an ensemble’s remaining errors.
Yi-Lightning
Models & ArchitecturesA speed-oriented 01.AI Mixture of Experts language model built around low latency, efficient serving, and lower cost.
Zero-day
FoundationsA vulnerability unknown to the vendor or maintainer, leaving defenders with no patch window before exploitation begins.
Zero-Shot / Few-Shot Learning
FoundationsPrompting methods that ask a model to perform a task with no worked examples or with only a small set of examples, without updating the model’s weights.