Yesterday's question Determine accuracy of model which estimates probability of event got me curious about probability scoring.
The Brier score
$$\frac{1}{N}\sum\limits _{i=1}^{N}(prediction_i - reference_i)^2$$
is a mean squared error measure.
Does the analogous mean absolute error performance measure
$$\frac{1}{N}\sum\limits _{i=1}^{N}|prediction_i - reference_i|$$
have a name, too?