mae
std.loss.mae · Level L0Mean absolute error. Calls abs.
(1/n)·Σᵢ |yᵢ − tᵢ|
Signature
mae(y: f64[n], t: 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.
- Equal to the reference
np.mean(np.abs(y - t))in exact rational arithmetic, on all 40 test cases. - All 40 float64 results inside the running error bound; the closest uses 24% of it.
- Interpreter and NumPy backend return bit-identical results.
Accuracy in detail
- correctly rounded (the float64 nearest the exact value)
- 83%
- bit-equal to the NumPy formula in float64
- 100%
- largest error, in units in the last place
- 1.40
Identity
sha256:9eb96b5edebc779452f38d5a685b0d3103b2d38e6f2734307e7f5fbf7b0cd4eeThe semantic hash of the graph. It changes when the program changes, and never when only its documentation does.