Numeric Feature SSE

Learn how CART regression trees split training data using numeric features.

Finding the optimal split

Similar to classification trees, the CART algorithm has to find optimal regression tree splits efficiently. In the case of numeric features, this is a challenge because numeric features have many unique values. Once again, the CART algorithm utilizes ...