| Building Block | What it Does | How it Works |
|---|---|---|
| Neurons | Basic decision units | Each neuron receives several weighted inputs, adds a bias, then applies an “activation function” to decide whether or not it should fire. |
| Layers | Structural organization | • Input Layer – takes raw data (pixel values, word tokens, etc.).• Hidden Layers – one or more intermediates that learn features and patterns.• Output Layer – delivers the final prediction (a probability, a class label, a real number, etc.). |
| Weights | Connection strengths | Numbers that scale the influence of each input on the neuron’s output. They’re learned during training. |
| Bias | Offset term | A small adjustment added before the activation; it lets a neuron fire even if all its inputs are zero. |
Quick tip – Too high a learning rate → huge, unstable jumps; too low → painfully slow progress.