What is the 'mean absolute error' (MAE) metric used to evaluate in machine learning?
MAE = mean of |predicted - actual|. It measures average error magnitude in regression tasks — lower is better.
Why this answer
Mean Absolute Error (MAE) is a regression metric that calculates the average of the absolute differences between predicted and actual values. It measures how close predictions are to the true outcomes, with lower values indicating better model accuracy. In Azure Machine Learning, MAE is commonly used to evaluate regression models like linear regression or decision forests.
Exam trap
The trap here is that candidates confuse MAE with classification metrics like accuracy or confidence, or assume it involves thresholds, when in fact MAE is strictly a regression metric measuring average absolute error without any threshold or comparison to random chance.
How to eliminate wrong answers
Option A is wrong because MAE does not measure confidence percentages; classification confidence is typically evaluated using metrics like log loss or calibration curves. Option C is wrong because MAE averages all absolute errors without applying a threshold; metrics like 'accuracy within a tolerance' or 'pinball loss' handle threshold-based deviations. Option D is wrong because MAE compares predictions to actual values, not to random chance; comparing to random chance is done with metrics like R-squared or relative absolute error.