cross_entropy
std.loss.cross_entropy · Level L1Cross-entropy between a target distribution and the softmax of logits. Calls log_softmax.
−Σᵢ tᵢ·log softmax(z)ᵢ
Signature
cross_entropy(logits: f64[n], target: f64[n]) → f64[]
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
-np.sum(target * log_softmax(logits))to 80 digits (100-digit arithmetic), on all 40 test cases. - All 40 float64 results inside the running error bound; the closest uses 20% of it.
- Interpreter and NumPy backend return bit-identical results.
Accuracy in detail
- correctly rounded (the float64 nearest the exact value)
- 65%
- bit-equal to the NumPy formula in float64
- 63%
- largest error, in units in the last place
- 2.18
Identity
sha256:33cf1fc43bfd545a043eea67d29a3f1c8bf0fc1251fe9171c47f73e53c80a2b1The semantic hash of the graph. It changes when the program changes, and never when only its documentation does.