(MXML-2-03) Decision Trees - ID3 - C4.5, IGR, Pruning, Coding Practice
(MXML-2-03) Decision Trees - ID3 - C4.5, IGR, Pruning, Coding Practice
Introduction
If the upper bound value after splitting is greater than the upper bound value before
splitting, it is better prune the tree / not split the tree.
If the upper bound value after splitting is lower than the upper bound value before
splitting, it is better not to prune the tree / split the tree.
4. Python Code Example