I found a paper using this Its simple enough to implement: ```julia median_absolute_error(ŷ, y) =median(abs.(ŷ .- y)) const mdae = median_absolute_error ``` Its not the fastest measure to compute, but on most sizes of test data it is going to be cheap vs training.