The Machine Learning “Advent Calendar” Day 7: Decision Tree Classifier
In Day 6, we saw how a Decision Tree Regressor finds its optimal split by minimizing the Mean Squared Error. Today, for Day 7 of the Machine Learning “Advent Calendar”, we switch to classification. With just one numerical feature and two classes, we explore how a Decision Tree Classifier decides where to cut the data, using impurity measures like Gini and Entropy. Even without doing the math, we can visually guess possible split points. But which one is […]