I am trying to train a model using SciKit Learn's SVM module. For the scoring, I could not find the mean_absolute_error
(MAE), however, negative_mean_absolute_error
(NMAE) does exist. What is the difference between these 2 metrics? Lets say I get the following results for 2 models:
model 1 (NMAE = -2.6), model 2(NMAE = -3.0)
Which model is better? Is it model 1?
Moreover, how does the negative compare to the positive? Say the following:
model 1 (NMAE = -1.7), model 2(MAE = 1.4)
Here, which model is better?