After opening the folder path in the terminal, use the following command to run the program.
python3 hunt_algorithm.py
Implement Hung's algorithm for decision tree classification
The training set is adult.data and evaluation set is adult.test.
Remove all the records containing '?' (i.e., missing values). Also, remove the attribute "native-country".
- An executable program, which should output a decision tree to the disk when given an input training set.
- A readme file detailing how to use the program.
- Source code.
- A [document](./Project Report.md) describing (i) the decision tree built from the Adult training set, and (ii) a report on using the tree to classify the records of the evaluation set. The report should indicate, for each record in the evaluation set, its attributes and whether it has been classified successfully.