Artificial Intelligence is evolving rapidly, bringing with it a wave of new concepts, acronyms, and technical jargon. Whether you are building AI applications, reading tech news, or evaluating tools for work, understanding this vocabulary is essential.
This guide breaks down modern AI terminology into logical categories—from foundational computer science principles to cutting-edge protocols shaping autonomous systems today.
1. Foundational Building Blocks
Before diving into complex workflows, it helps to understand the nested hierarchy of AI technologies: AI $\rightarrow$ Machine Learning $\rightarrow$ Deep Learning $\rightarrow$ Neural Networks.

Artificial Intelligence (AI)
The broad field of computer science dedicated to creating systems capable of performing tasks that typically require human intelligence—such as visual perception, speech recognition, decision-making, and language translation.
Machine Learning (ML)
A subset of AI where systems learn patterns from data to make predictions or decisions without being explicitly programmed with rigid rules. Instead of coding every IF/ELSE statement, ML algorithms adjust their internal parameters based on statistical patterns in sample data.
Deep Learning (DL)
A specialized branch of Machine Learning that uses deep neural networks with many layers (hence “deep”) to extract high-level features from raw data. DL powers modern image recognition, voice synthesis, and natural language understanding.
Neural Network (Artificial Neural Network / ANN)
A computational architecture inspired by the human brain. It consists of layers of interconnected nodes (“neurons”) that pass signals to one another:
- Input Layer: Receives raw features (e.g., pixel values of an image).
- Hidden Layers: Perform mathematical transformations on the input to detect complex patterns.
- Output Layer: Produces the final prediction or output (e.g., “95% probability this image is a cat”).
Transformer Architecture
Introduced in the landmark 2017 paper “Attention Is All You Need”, the Transformer is the foundational neural network architecture behind almost all modern Large Language Models. It processes entire sequences of data simultaneously (rather than step-by-step like older RNNs) using Self-Attention Mechanisms to track relationships between distant words or elements in a dataset.
2. Generative AI & Model Anatomy
Generative AI refers to models capable of generating new content—text, code, images, audio, or video—based on patterns learned during training.
Large Language Model (LLM)
A deep learning model trained on vast quantities of text data to understand, generate, and manipulate human language. Examples include Google Gemini, OpenAI GPT-4, and Anthropic Claude.
Multimodal AI / Large Multimodal Model (LMM)
An AI model capable of understanding and processing multiple types of input and output seamlessly—such as text, images, video, audio, and code—within a unified neural network architecture.
Parameters & Weights
- Parameters: The internal numerical knobs and values within a neural network that are adjusted during training. A “70 Billion Parameter model” (70B) has 70 billion configurable values.
- Weights: The strength of the connection between individual neurons, dictating how much influence one node has over another.
Context Window & Tokens
- Token: The basic unit of data processed by an LLM. A token can be a word, a fraction of a word, or a punctuation mark (roughly $1\text{ token} \approx 0.75\text{ English words}$).
- Context Window: The maximum number of tokens a model can hold in its active memory during a single interaction (input prompt plus generated response).
3. Context, Memory & Data Integration
While base models possess immense general knowledge, they cannot natively access your private internal documents or dynamic real-time data unless connected via external integration frameworks.

Vector Embeddings & Vector Databases
- Vector Embedding: A mathematical representation of data (text, images, audio) converted into a multi-dimensional array of numbers (vectors). Words or concepts with similar meanings sit closer together in vector space.
- Vector Database: A specialized database optimized for storing and retrieving high-dimensional vectors. It enables semantic search—finding information based on concept similarity rather than exact keyword matches.
Retrieval-Augmented Generation (RAG)
An architectural technique that enhances an LLM’s responses by fetching relevant external documents from a knowledge store (like a vector database) and feeding those facts into the model’s context window alongside the user’s prompt.
- Why it matters: Prevents stale knowledge, cuts down on hallucinations, and eliminates the expensive need to re-train the model on private organizational data.
Model Context Protocol (MCP)
An open standard framework that defines how AI models connect safely and uniformly to external data sources, applications, databases, and local file systems.
- Why it matters: Rather than building custom API integrations for every model and tool pair, MCP provides a standard client-server specification. An AI model acts as an “MCP Client” that can interact with any compliant “MCP Server” (e.g., GitHub, PostgreSQL, Google Drive, local terminal).
4. Autonomy & Workflow Dynamics
AI is shifting from passive Q&A chat interfaces toward proactive systems capable of executing complex multi-step plans.
Agentic AI / AI Agents
Systems engineered with goal-directed behavior. Unlike standard chatbot models that simply reply to a prompt, an AI Agent can:
- Break down a high-level goal into sub-tasks (Planning).
- Use tools like web search, code interpreters, or database queries (Tool Call / Function Calling).
- Evaluate its intermediate results and revise its strategy (Reflection / Self-Correction).
- Execute operations autonomously to reach the final objective.
Function Calling / Tool Use
A feature where an LLM identifies when a user query requires an external action or real-time calculation, generates a structured output (like JSON) specifying which function to run and with what arguments, and incorporates the execution results back into its reply.
Chain-of-Thought (CoT) & Reasoning Models
- Chain-of-Thought (CoT): A prompting technique or model architecture that encourages the system to break complex logic into explicit step-by-step reasoning paths before arriving at an answer.
- Reasoning Models: Models specially trained or fine-tuned to generate internal hidden chains of thought, dramatically improving performance in mathematics, programming, and formal logic.
Human-in-the-Loop (HITL)
A governance model where human authorization or supervision is embedded into an automated workflow—especially before an AI agent executes irreversible or high-risk actions (e.g., executing a financial transaction, sending external emails, or deleting files).
5. Training, Optimization & Alignment
How models are built, refined, made efficient, and made safe for practical use.
Training Phases: Pre-training vs. Fine-Tuning
- Pre-training: The initial, computationally expensive phase where a base model reads massive unlabelled text corpora (terabytes of web data) to learn grammar, facts, and reasoning patterns.
- Fine-Tuning: The second phase where a pre-trained model is further trained on a smaller, high-quality, task-specific dataset to adapt its behavior (e.g., instruction following, medical analysis, or code generation).
RLHF (Reinforcement Learning from Human Feedback)
A key alignment technique where human reviewers rank different candidate outputs generated by a model. These preferences train a reward model, which is then used via reinforcement learning to steer the AI toward helpful, honest, and harmless responses.
Quantization
A compression method that reduces the numerical precision of a model’s parameters (e.g., converting 16-bit floating-point numbers down to 8-bit or 4-bit integers). This significantly lowers memory (VRAM) requirements and speeds up execution with minimal degradation in accuracy.
Hallucination
When an AI model generates confident, natural-sounding responses that are factually incorrect, ungrounded, or invented.
Inference vs. Training
- Training: The compute-heavy phase where a model learns patterns from data and sets its weight values.
- Inference: The operational phase where a finished model accepts user prompts and computes predictions/outputs.
6. Summary Reference Table
| Term | Category | Core Function in 1 Sentence |
| Neural Network | Architecture | A layered computing structure modeled loosely on biological brains. |
| Transformer | Architecture | The core deep learning architecture using self-attention for sequence modeling. |
| LLM | Model Type | A massive neural network trained on vast text datasets to parse and generate language. |
| Multimodal | Model Capability | Capable of processing and producing multiple media types (text, image, audio, video). |
| Vector Database | Data Infrastructure | Stores multi-dimensional embeddings to enable semantic concepts search. |
| RAG | Context Architecture | Augments AI answers by dynamically fetching context from external documents. |
| MCP | Protocol | Standardized protocol for securely connecting AI models to external tools & databases. |
| Agentic AI | System Behavior | Goal-oriented systems capable of multi-step planning, tool use, and self-correction. |
| RLHF | Alignment | Aligns AI behavior with human intent using preferences and reinforcement learning. |
| Quantization | Optimization | Compresses models by reducing numerical precision for faster, lighter execution. |
Conclusion
Understanding these terms clarifies how modern AI operates: deep learning architectures like Transformers form the foundation for LLMs and Multimodal models; integration frameworks like RAG and MCP connect those models to data and services; and Agentic AI combines them into autonomous, action-oriented systems.
Discover more from GhostProgrammer - Jeff Miller
Subscribe to get the latest posts sent to your email.
