Neuron
A tiny decision-maker. It adds up its inputs and decides how loudly to fire.
y = activation(Σ wᵢxᵢ + b)
Every term in plain kid-friendly language, with the real math version underneath.
A tiny decision-maker. It adds up its inputs and decides how loudly to fire.
y = activation(Σ wᵢxᵢ + b)
A row of neurons that all look at the same signal together.
h⁽ˡ⁾ = activation(W⁽ˡ⁾h⁽ˡ⁻¹⁾ + b⁽ˡ⁾)
A volume knob that says how much one input matters.
wᵢ — the multiplier applied to input xᵢ before summing
A head start added to a neuron so it can fire even when its inputs are quiet.
sum = Σ wᵢxᵢ + b; b shifts the threshold
The rule that turns a neuron's total into its final 'boom'.
e.g. ReLU: max(0, x), sigmoid: 1/(1+e⁻ˣ), tanh: (eˣ−e⁻ˣ)/(eˣ+e⁻ˣ)
A stretch knob. Higher gain makes the activation react more steeply.
y = activation(gain · x) — gain scales the input before the curve
How big a step the network takes when it fixes a mistake.
w ← w − α · ∂Loss/∂w, where α is the learning rate
A score for how wrong the network's answer was — smaller is better.
Loss = (guess − correct)², averaged over examples
A label we want the network to pick, like 'cat' or 'dog'.
y ∈ {A, B} — the category the output is matched against
The dividing line where the network switches from saying 'this one' to 'that one'.
the set of points where Σ wᵢxᵢ + b = 0