简体   繁体   English

随机森林回归 MAE

[英]Random Forest Regression MAE

I'm trying to create a random forest regression model to predict a continuous variable with the following characteristics (after log-transformation):我正在尝试创建一个随机森林回归模型来预测具有以下特征的连续变量(在对数转换之后):

count 2868.000000 mean 4.566630 std 1.233496 min -0.356675 25% 3.745966 50% 4.604670 75% 5.452325 max 8.141889计数 2868.000000 平均值 4.566630 std 1.233496 min -0.356675 25% 3.745966 50% 4.604670 75% 5.452325 max 8.141889

The best result I get in terms of negative mean absolute error is -0.64.就负平均绝对误差而言,我得到的最佳结果是 -0.64。 How should I evaluate this result?我应该如何评估这个结果? Is it good/decent/bad?它是好/体面/坏吗?

Thank you very much.非常感谢。

here is a link to the docs docs这是文档文档的链接

the simple answer to your question is yes it is a good to have a -0.64 NMAE.您的问题的简单答案是肯定的,拥有-0.64 NMAE 是件好事。

NMAE is the opposite of MAE but you can basically remove the minus and treat it as a normal MAE. NMAE 是 MAE 的对立面,但您基本上可以去掉减号并将其视为正常的 MAE。 so that means if you have a high MAE that means the NMAE is also high and that is not a good result but a low MAE can be seen as low NMAE and that's considered a good result of course depending on what you want to have.所以这意味着如果你的 MAE 高,这意味着 NMAE 也很高,这不是一个好的结果,但低 MAE 可以被视为低 NMAE,这当然被认为是一个好的结果,这取决于你想要什么。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM