Tested tool guide
Tested browser tools
Checked August 16, 2026
What Activation Function Explorer does, with a checked example
This tool evaluates several activation functions at once against a shared input value or range, plotting each curve alongside its derivative and labeling the output range (0 to 1 for sigmoid, -1 to 1 for tanh, 0 to infinity for ReLU) so you can compare saturation and slope directly. It computes both the function and its analytic derivative rather than estimating slope numerically. The most common surprise: softmax operates on a full vector of scores and normalizes them against each other, so typing in one scalar the way you would for sigmoid or tanh does not reproduce real softmax behavior.
Worked example
A concrete input and expected output from the current implementation.
->
Expected output
ReLU(2) = 2, ReLU'(2) = 1 | Sigmoid(2) ≈ 0.8808, Sigmoid'(2) ≈ 0.1050 | Tanh(2) ≈ 0.9640, Tanh'(2) ≈ 0.0707
Sigmoid(2) = 1/(1+e^-2) and tanh(2) = (e^4-1)/(e^4+1) are standard closed-form values; each derivative uses the function's own output (sigmoid'=s(1-s), tanh'=1-tanh^2), which is why both derivatives are already small at x=2 - both curves are heading into their flat, saturated region.