Interactive visualization of the softmax activation function
The softmax function converts a vector of real numbers into a probability distribution. It's commonly used in machine learning for multi-class classification.
Formula: σ(z)_i = e^{z_i} / Σ_j e^{z_j}