mlinsights icon indicating copy to clipboard operation
mlinsights copied to clipboard

Faster split criterion for Piecewise Tree Regressor

Open craciuncg opened this issue 1 year ago • 0 comments

As far as I have noticed, for splitting a node, it is required to compute the beta coefficients for the linear regression model for the node samples, calculate the MSE score and then decide the split based on that(note that this is my high level understanding of the process).

I believe that a faster criterion for splitting nodes could be to use the Pearson Correlation Coefficient(its absolute value), since the model that needs to be fitted is linear.

craciuncg avatar Feb 16 '24 17:02 craciuncg