CS534 Assignment 2-Decision Tree Ensemble for Optical Character Recognition Solved

35.00 $

Category:

Description

Rate this product

Decision Tree Ensemble for Optical Character Recognition 

In this assignment we continue working on the Optical Character Recognition task to classify between two numbers 3 and 5. The goal in this assignment is to develop variations of the decision tree.

Data. The data for this assignment is generated from the data of implementation assignment 2. We apply the Principal Component Analysis (PCA) to reduce the dimension from 784 to 100. Here is a short description of each train and validation split:

  • Train Set (pa3 train reduced.csv): Includes 4888 rows (samples). Each sample is in fact a list of 101 values. The first number is the digit’s label which is 3 or 5. The other 100 floating values are the the flattened feature values given by the PCA.
  • Validation Set (pa3 valid reduced.csv): Includes 1629 rows. Each row obeys the same format given for the train set. This set will be used to tune the hyper parameters and select the best model.

Important Guidelines.           For all parts of this assignment:

  • Please assign labels +1 to number 3 and -1 to label 5.
  • Please do not add bias to the features.

Part 1  : Decision Tree (DT). For this part we are interested in using a decision tree with below configuration:

  • The DT uses gini-index to measure the uncertainty. Specifically if we have a node split from list A to

two left and right lists AL and AR as depicted in figure 1 then

Figure 1: Split list A to two lists AL and AL with feature fi at threshold T

the benefit of split for feature fi at threshold T is computed as:

B = U(A) − plU(AL) − prU(AR)

Where U is the gini-index function which is computed for a list such as AL as follows:

(1)

(2)

and pl and pr are the probabilities for each split which is given by

(3)

  • The feature values are continuous. Therefore you need to follow the descriptions and hints given in the slide to search for the best threshold T for a feature fi.

Please implement below steps:

  • Create a decision tree with maximum depth of 20 (root is at depth=0) on the train data. (Note that

a normal implementation of the tree should take about 220 seconds on Babylon for this maximum of depth.)

  • Using the created decision tree, compute and plot the train and validation accuracy versus depth.
  • Explain the behavior of train/validation performance against the depth. At which depth the train accuracy reaches to 100% accuracy? If your tree could not get to 100% before the depth of 20, keep on extending the tree in depth until it reaches 100% for the train accuracy.
  • Report the depth that gives the best validation accuracy?

Part 2  : Random Forest (Bagging). In this part we are interested in random forest which is a variation of bagging without some of its limitations. Please implement below steps:

  • Implement a random forest with below parameters:

n : The number of trees in the forest. m : The number of features for a tree. d : Maximum depth of the trees in the forest.

Here is how the forest is created: The random forest is a collection of n trees. All the trees in the forest

has maximum depth of d. Each tree is built on a data set of size 4888 sampled (with replacement) from the train set. In the process of building a tree of the forest, each time we try to find the best feature fi to split, we need to first sub-sample (without replacement) m number of features from 100 feature set and then pick fi with highest benefit from m sampled features.

  • For d = 9, m = 10 and n ∈ [1,2,5,10,25], plot the train and validation accuracy of the forest versus the number of trees in the forest n.
  • What effect adding more tree into a forest has on the train/validation performance? Why?
  • Repeat above experiments for d = 9 and m ∈ [20,50]. How greater m changes the train/validation accuracy? Why?

Part 3 : AdaBoost (Boosting). For this part we are interested in applying AdaBoost to create yet another ensemble model with decision tree. Considering the AdaBoost algorithm described in the slide, please do below steps:

  • Let the weak learner be a decision tree with depth of 9. The decision tree should get a weight parameter D which is a vector of size 4888 (train size). Implement the decision tree with parameter D such that it considers D in its functionality.

(Hint: It changes the gini-index and also the predictions at leaves).

  • Using the decision tree with parameter D implemented above, develop the AdaBoost algorithm as described in the slide with parameter L.
  • Report the train and validation accuracy for L ∈ [1,5,10,20].
  • Explain the behavior of AdaBoost against the parameter L.
  • Implementation-3-ptxtot.zip