Decision Tree Regression is a non-parametric supervised learning model used for regression tasks. It uses a binary tree structure to make predictions by recursively partitioning the input space into smaller regions. Each internal node in the tree represents a splitting criterion based on feature values, and each leaf node represents a predicted response value. It works by minimizing the sum of squared differences between the predicted and actual target values.
These experts have a deep understanding of decision tree regression and provide valuable resources and examples for implementation.