You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I came across the paperWeighted Quantile Regression Forests for Bimodal Distribution Modeling: A Loss Given Default Case. Basically, the authors performed a quantile random forest (qRF) regression but they used performance-based weights for quantile estimation, so that trees with better performance weigh more. They added some more things but their methodology is described on p7 to p9 with p9 showing the pseudocode with I attached below:
(Gostkowski & Gajowniczek, 2020)
They used the quanterForest package for their analysis but I believe ranger should do the job just fine. I contacted the authors of the paper and their reply was: In general this package (quanterForest) returns matrix with probability for observations in each tree. Based on that someone can write his own function calculating final prediction. Instead of simple average he can add weights as well.
Here is my question/request: Is weighted qRF something that you are interested to implement in your package as an addition to the "classical" qRF?
If you don't have access to the paper, please let me know and I'll share it so you can have a look in more detail at their implementation and the steps they followed.
Thank you.
The text was updated successfully, but these errors were encountered:
I haven't checked what they are doing exactly, but I think it might already be possible, since the quantile prediction supports a user-supplied function that can be used for weighting:
Hi,
I came across the paper Weighted Quantile Regression Forests for Bimodal Distribution Modeling: A Loss Given Default Case. Basically, the authors performed a quantile random forest (qRF) regression but they used performance-based weights for quantile estimation, so that trees with better performance weigh more. They added some more things but their methodology is described on p7 to p9 with p9 showing the pseudocode with I attached below:
(Gostkowski & Gajowniczek, 2020)
They used the
quanterForest
package for their analysis but I believeranger
should do the job just fine. I contacted the authors of the paper and their reply was: In general this package (quanterForest
) returns matrix with probability for observations in each tree. Based on that someone can write his own function calculating final prediction. Instead of simple average he can add weights as well.Here is my question/request: Is weighted qRF something that you are interested to implement in your package as an addition to the "classical" qRF?
If you don't have access to the paper, please let me know and I'll share it so you can have a look in more detail at their implementation and the steps they followed.
Thank you.
The text was updated successfully, but these errors were encountered: