Icon

09 Decision Tree Model - Solution

09 Decision Tree Model - Solution
Exercise: Decision Tree and Classification Model Evaluation1) Read the adult_joined.table file by executing the Table Reader node2) Partition the dataset into a training set (75%) and a test set (25%). Apply stratified sampling to the income column.3) Train a Decision Tree model on the training set to predict whether or not a person earns more than 50K per year4) Apply the model to the test set5) Evaluate the accuracy of the model with scoring metrics- What is the overall accuracy of the model?6) Open the configuration dialog of the Scorer (JavaScript) node and exclude those statistics from the class predictionstatistics table that are also present in the confusion matrix. Display the number of rows in the confusion matrix. - What is the number of rows in the test dataset?7) Evaluate the performance of the model with an ROC curve- What is the Area under the Curve statistics for the decision tree model?8) OPTIONAL: Try out other parameter settings to reach a better performance. For example, change the quality measure,pruning method, or minimum number of records. The overall accuracy of the modelis around 86 %The number of rows is 8138The Area under the Curve (AuC)statistics is 0.88 Top: train set (75%)Bottom: test set (25%)Stratified sampling on incomeTrain the modelto predict incomeApply the modelto the test setRead adult_joined.tablescoring metrics Partitioning DecisionTree Learner Decision TreePredictor Table Reader Scorer (JavaScript) ROC Curve Exercise: Decision Tree and Classification Model Evaluation1) Read the adult_joined.table file by executing the Table Reader node2) Partition the dataset into a training set (75%) and a test set (25%). Apply stratified sampling to the income column.3) Train a Decision Tree model on the training set to predict whether or not a person earns more than 50K per year4) Apply the model to the test set5) Evaluate the accuracy of the model with scoring metrics- What is the overall accuracy of the model?6) Open the configuration dialog of the Scorer (JavaScript) node and exclude those statistics from the class predictionstatistics table that are also present in the confusion matrix. Display the number of rows in the confusion matrix. - What is the number of rows in the test dataset?7) Evaluate the performance of the model with an ROC curve- What is the Area under the Curve statistics for the decision tree model?8) OPTIONAL: Try out other parameter settings to reach a better performance. For example, change the quality measure,pruning method, or minimum number of records. The overall accuracy of the modelis around 86 %The number of rows is 8138The Area under the Curve (AuC)statistics is 0.88 Top: train set (75%)Bottom: test set (25%)Stratified sampling on incomeTrain the modelto predict incomeApply the modelto the test setRead adult_joined.tablescoring metrics Partitioning DecisionTree Learner Decision TreePredictor Table Reader Scorer (JavaScript) ROC Curve

Nodes

Extensions

Links