Model
An AI model is the trained artifact — a specific set of numerical weights plus an architecture — produced when a learning algorithm runs against training data, and the thing that actually gets deployed and audited.
Full definition
A model is what you ship. It encodes everything the algorithm learned from the data into a fixed file (often gigabytes to terabytes for modern frontier models). The same algorithm trained on different data produces different models; the same data run through different algorithms also produces different models. Governance regimes such as the EU AI Act regulate models and their deployment context, not algorithms in the abstract.
Why it matters
Knowing exactly which model is in production — version, training data cutoff, evaluation results — is the prerequisite for debugging, audit, regulatory response, and rollback. Organizations that cannot answer "which model is running where?" cannot meaningfully govern AI.
Example
GPT-4o, Claude Sonnet 4.5, and Gemini 1.5 Pro are specific models. Each is a frozen artifact with a published model card describing training, evaluation, and limitations.
Related terms
- AlgorithmAn algorithm is a finite, well-defined sequence of computational steps that takes an input and produces an output, designed to solve a class of problems — for example, sorting a list, ranking search results, or training a neural network.
- Foundation ModelA foundation model is a large model trained on broad data at scale — typically self-supervised — that can be adapted to many downstream tasks via prompting, fine-tuning, or retrieval, instead of being trained task-by-task.
- Large Language Model (LLM)A Large Language Model (LLM) is a deep neural network — almost always a transformer — trained on hundreds of billions to trillions of words to predict the next token, and to generate, summarize, translate, or reason over text.
- Fine-tuningFine-tuning is the process of further training a pretrained model on a smaller, task-specific dataset so it specializes in a particular style, domain, or behavior — without retraining from scratch.
- MLOpsMLOps is the discipline of operating machine-learning and AI systems reliably in production — covering data pipelines, model training, deployment, monitoring, drift detection, governance, and incident response — analogous to DevOps for traditional software.
Source & further reading
Primary source: Mitchell, M. et al. — "Model Cards for Model Reporting" (2019).
Citation policy: this entry is part of the AIDOLS AI Implementation Glossary and may be quoted for research, journalism, and education with attribution to aidolsgroup.com/fr/glossary/model/.