Regular Regression vs. Ordinal Regression Loss #40
-
I just watched this presentation and really liked it; kudos! This might be a dummy question, but I asked myself, if you're using MAE metrics to compute model performance, why not train the whole model using MSE Loss or MAE Loss and then rounding to the nearest integer at inference time? Is it to preserve the probabilities when making predictions? Is there any theoretical foundation that justifies that? Please let me know if this is covered in any of the CORN or CORAL papers Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Good point, and you can absolutely do that @abarbosa94 . But when you train a regression model minimize MSE during training you would assume that all the distances are equal. Like the difference between labels 3 and 5 is the same as the difference between labels 5 and 7. That might not be the case in ordinal regression though. |
Beta Was this translation helpful? Give feedback.
Good point, and you can absolutely do that @abarbosa94 . But when you train a regression model minimize MSE during training you would assume that all the distances are equal. Like the difference between labels 3 and 5 is the same as the difference between labels 5 and 7. That might not be the case in ordinal regression though.