Activation Functions in Neural Networks
Activation adds non-linearity. Without it, stacked layers collapse to one linear map. ReLU = max(0, x) is the workhorse. Sigmoid/tanh squash; they saturate (vanishing gradients). Softmax on the last layer for multi-class probabilities.
Viva — why activation + name ReLU + one old one (sigmoid).
Activation Functions in Neural Networks — output: -2 → 0 / 0 → 0 / 3 → 3. Without activation, deep layers collapse to linear.
Why no activation = pointless deep net.