log_softmax
std.nn.log_softmax · Level L1Log of the softmax, computed as x − logsumexp(x) without forming the softmax. Calls logsumexp.
xᵢ − log Σⱼ e^(xⱼ)
Signature
log_softmax(x: f64[n]) → f64[n]
Structure
The function as NOVA stores it: one box per input, operation and output, and arrows that carry values. A double border marks a call to another library function; select it to open that function.
- input
- operation
- constant
- call
- output
Verification
- Signature proven by NOVA’s shape solver, for every size.
- Agrees with the reference
x - np.log(np.sum(np.exp(x)))to 80 digits (100-digit arithmetic), on all 40 test cases. - All 148 float64 results inside the running error bound; the closest uses 55% of it.
- Interpreter and NumPy backend return bit-identical results.
Accuracy in detail
- correctly rounded (the float64 nearest the exact value)
- 67%
- bit-equal to the NumPy formula in float64
- 78%
- largest error, in units in the last place
- 7.6e+15
Large ulp counts appear only where cancellation drives a result toward zero; the absolute error is still inside the bound.
Identity
sha256:b214602190583450717d4868470d0235a7027c1485154d8d7d3485078ac93ec2The semantic hash of the graph. It changes when the program changes, and never when only its documentation does.