Implement the Decision Tree Classifier from Scratch
In this project, we’ll implement the decision tree classifier from scratch in Python. The decision tree classifier is a machine learning model that creates an N-ary tree where each node (or decision stump) represents a feature in the training data. Once the tree is constructed, it can be traversed by providing the classes for each feature in a row of the test dataset.
Moreover, we’ll implement the