13 October 2022 8 1K Report

I've used a regression decision tree for prediction and got around 92% correlation between the predicted and actual values.

Then, the actual values and other features were used to train another regression DT to predict another parameter, and a 90% correlation was achieved.

However, when I tried to use the predicted values from the first model to train different ML algorithms including DT, I got less than a 40% correlation.

So, why do I have bad results when the actual values from the first model are used to feed the second model as inputs?

I've read some ideas about doing a cascaded DT, but I am not sure if this would help and if it's doable for regression DT or not.

Thanks

Similar questions and discussions