HomeLearn

Learn AI

Plain-English guides to the concepts, frameworks, and skills you need to actually use AI well. No hype, no jargon dump, no version numbers that go stale.

AI Concepts

13 articles

Plain-English explainers of the core ideas behind modern AI - LLMs, embeddings, RAG, agents, and the architecture that makes it all work.

What Is Embedding in AI?

An embedding is a list of numbers that represents the meaning of text, image, or data in a way AI models can compare, search, and reason about.

What Is Hallucination in AI?

AI hallucination is when a model produces confident, fluent output that is factually wrong. It's the biggest practical reliability problem in LLMs today.

What Is an AI Agent?

An AI agent is a system that perceives its environment, decides on actions, and executes them autonomously to complete multi-step goals. Full explainer.

What Is a Large Language Model?

A large language model (LLM) is a neural network trained on billions of text tokens to predict and generate human language. Plain-English explainer.

What Is the Context Window in AI?

The context window is the maximum amount of text an AI model can read and reason about in one request. It determines memory, cost, and task complexity.

What Is Fine-Tuning in AI?

Fine-tuning takes a pre-trained AI model and trains it further on your specific data so it performs better on your exact use case. Plain-English guide.

What Is the Model Context Protocol (MCP)?

MCP is an open standard by Anthropic that lets AI models connect to external tools, data sources, and services through a unified protocol.

What Is Mixture of Experts (MoE)?

Mixture of Experts is an architecture where only a subset of a model's parameters activate per token, making very large models faster and cheaper to run.

What Is Prompt Engineering?

Prompt engineering is the practice of crafting inputs to an AI model to reliably get better outputs. It's part skill, part science, all learnable.

What Is RAG (Retrieval-Augmented Generation)?

RAG is a technique that connects an LLM to external documents so it can answer questions from real sources, not just training data. Full explainer.

What Is RLHF? (2026 Plain-English Guide)

RLHF is how AI labs train models to be helpful, harmless, and honest by having humans rank outputs and using those preferences to guide training.

What Is Tokenization in AI?

Tokenization is how AI models split text into chunks called tokens before processing. It determines what models can read, count, and how much you pay.

What Is the Transformer Architecture?

The transformer architecture is a neural network design that uses self-attention to process all input tokens simultaneously, replacing sequential models.