Lessons
The overview is the whole idea in one sitting. These pages take one concrete case each and walk it through end to end — inputs, steps, and result — so you can see how the vocabulary from Terms shows up in practice.
Machine learning with stacked neurons and ReLU layers: how a deep network builds a price guess from house features in TypeScript.
The overview is the whole idea in one sitting. These pages take one concrete case each and walk it through end to end — inputs, steps, and result — so you can see how the vocabulary from Terms shows up in practice.
Build a 3→4→4→1 ReLU network and run one forward pass on a house — no training yet.
Trace [1500, 3, 10] through two ReLU layers to a price; see which neurons switch off.
Send price error backward through two ReLU layers and take one gradient-descent step.
Epochs over all five HOUSES: forward, backprop, update — watch loss fall.
Freeze the net, price a new listing, and check a held-out house so train loss is not the whole story.
| Topic | Description |
|---|---|
| Artificial Intelligence (AI) | What AI is at the first layer: human decisions turned into computer rules — before machine learning enters the picture. |
| Machine Learning | How a model improves from examples: labels, features, training, and the difference between fitting data and predicting on new data. |