---
title: "What a Trained Model Is: Weights, Not Rules"
description: "A trained model is a large set of numbers fitted to examples, not a list of rules somebody wrote out. That is why nobody can point at the line that produced a given answer, and why more examples chang"
canonical: https://lightmysky.com/learn/computing/what-a-trained-model-is-weights-not-rules-mt_3_1toZUxak
source: https://lightmysky.com/learn/computing/what-a-trained-model-is-weights-not-rules-mt_3_1toZUxak.md
retrieved: 2026-09-12
---

> **Agent view.** This is the Markdown twin of the page, for tools and assistants.
> When to use this site, and the call that answers each job: https://lightmysky.com/agent-instructions.md
> API description (OpenAPI 3.1): https://lightmysky.com/openapi.json · Authentication: https://lightmysky.com/auth.md
> Pricing: https://lightmysky.com/pricing.md · Catalog: https://lightmysky.com/llms.txt · Full catalog: https://lightmysky.com/llms-full.txt
> Every machine-readable file on this domain: https://lightmysky.com/.well-known/ai-catalog.json
> Ask for Markdown with `Accept: text/markdown`, a `.md` address, or `?mode=agent`.

# What a Trained Model Is: Weights, Not Rules

A trained model is a large set of numbers fitted to examples, not a list of rules somebody wrote out. That is why nobody can point at the line that produced a given answer, and why more examples change what it does without anyone editing logic.

Subject: Computing · Area: Artificial Intelligence · Ages 14 to 15
Page: https://lightmysky.com/learn/computing/what-a-trained-model-is-weights-not-rules-mt_3_1toZUxak

## Ready when they can

- Contrast a rule a person could write with a number fitted from data, on the same task
- Say what training changes inside a model and what stays fixed once it has finished
- Explain why a model cannot give the reason for an answer the way a program can be read

## Lesson: A model is numbers, not rules

A written rule says what to do, like: if the temperature is high, say flu. A trained model holds no such sentence. It holds numbers fitted to examples, and nobody typed out any logic at all.

**Example.** Picture a tiny flu model with three weights, 0.7, 0.2, and minus 0.3, plus a bias of minus 0.3. It multiplies each patient measure by its weight, adds everything with the bias, and says yes if the total is big enough. Its whole brain is those four numbers.

Training changes only the numbers. Show it a patient it gets wrong, and training nudges each weight and the bias a little toward the right answer. After thousands of patients the numbers settle, the recipe stays fixed, and once training ends even the numbers freeze.

**Tip.** That is why a model cannot explain itself like a program. A spam filter sorts your inbox, but there is no line to point at that produced one answer. More examples change what it does without anyone editing logic.

**Recap.** Rules are written, weights are fitted, and training moves numbers only.

## Practice

8 questions on this page, each with its working shown.

## Needs first

- [Bias in AI Systems](https://lightmysky.com/learn/computing/bias-in-ai-systems-mt__BbOjiY5A5)
- [How a Chatbot Picks Its Next Word](https://lightmysky.com/learn/computing/how-a-chatbot-picks-its-next-word-mt_1Zbhamhzai)
- [Machine Learning Basics](https://lightmysky.com/learn/computing/machine-learning-basics-mt_K6qtan847r)

## Opens up

- [Training Data: Where It Came From and What It Leaves Out](https://lightmysky.com/learn/computing/training-data-where-it-came-from-and-what-it-leaves-out-mt_1Lw0TMHShk)
