homework代写 | Algorithm | 作业mining | Machine learning代做 | 作业Objective | 作业Python | assignment – COMPSCI 589 Homework 3 – Spring 2022

COMPSCI 589 Homework 3 – Spring 2022

homework代写 | Algorithm | 作业mining | Machine learning代做 | 作业Objective | 作业Python | assignment – 这道题目是利用Machine learning进行的编程代写任务, 涵盖了Algorithm/mining/Machine learning/Objective/Python等方面, 这个项目是assignment代写的代写题目

homework代写 代写homework hw代做

Due April 03, 2022, 11:55pm Eastern Time

1 Instructions

  • This homework assignment consists of a programming portion. While you may discuss problems with your peers, you must answer the questions on your own and implement all solutions independently. In your submission, do explicitly list all students with whom you discussed this assignment.
  • We strongly recommend that you use LATEX to prepare your submission. The assignment should be submitted on Gradescope as a PDF with marked answers via the Gradescope interface. The source code should be submitted via the Gradescope programming assignment as a .zip file. Include with your source code instructions for how to run your code.
  • We strongly encourage you to use Python 3 for your homework code. You may use other languages. In either case, youmustprovide us with clear instructions on how to run your code and reproduce your experiments.
  • You maynotuse any machine learning-specific libraries in your code, e.g., TensorFlow, PyTorch, or any Machine learning algorithms implemented in scikit-learn. You may use libraries like numpy and matplotlib. If you are not certain whether a specific library is allowed, do ask us.
  • All submissions will be checked for plagiarism using two independent plagiarism-detection tools. Renaming variable or function names, moving code within a file, etc., are all strategies thatdo notfool the plagiarism-detection tools we use. If you get caught, all penalties mentioned in the syllabuswillbe appliedwhich may include directly failing the course with a letter grade of F.
  • The tex file for this homework (which you can use if you decide to write your solution in LATEX), as well as the datasets, can be found here.
  • The automated system will not accept assignments after 11:55pm on April 03.

Programming Section (100 Points Total)

In this homework, you will be implementing the Random Forest algorithm.Notice that you may not use existing machine learning code for this problem: you must implement the learning Algorithm entirely on your own and from scratch.

In this assignment, you will:
  • Implement the standard Decision Tree algorithm based on the Information Gain splitting criterion. Notice that you may reuseyourprevious implementation of this algorithm.Important: your implementation should support both categoricalandnumerical attributes. When deter mining the numerical threshold that should be used when splitting numerical nodes, you may(i)use the average of that attributes values in the partition of instances associated with the current node; or(ii)use the more sophisticated (and powerful) technique discussed in lecture 04 (see slide #66).
  • Implement a procedure to create bootstrap datasets by sampling (with replacement) from the current training set to construct the datasets based on which each tree in the random forest will be trained.
  • Implement a mechanism to select (whenever a node is being split)mattributes at random from the complete set of attributes of an instance. You should then split the node based on the attribute with the best Information Gain. As a heuristic, we usually usem

X, whereXis
the total number of attributes composing each instance in the dataset.
  • Implement a majority voting mechanism that takes into account the predictions made by each tree in the ensemble to classify new instances.
  • Implement thestratified cross-validationtechnique to evaluate the generalization capability of the random forest. For an example, see Figure 1. We recommend usingk= 10 folds. Out of these,k1 folds will be used to train a random forest composed ofntreetrees. Here,ntreewill be the main adjustable hyper-parameter of your algorithm. The remaining foldthe one not used during trainingwill be used to evaluate the performance of the random forest itself (i.e., not the performance of any individual tree separately!). This process implies, in particular, that at each step of the cross-validation process, you will be training not onlyonedecision tree, but multiple (ntree) decision trees, all of which will be combined to compose your random forest. You will then repeat this process, thereby generating (and evaluating)krandom forests. The final performance is the average of the performances computed for each of the folds.
  • Evaluate the impact that the number of trees (i.e., thentreehyper-parameter) has on the performance of your random forest.

2 Deliverables

The main Objective of this homework is to study the impact of the number of trees composing a random forest (i.e., thentreehyper-parameter) on its performance. When constructing each tree in the ensemble, you are free to choose between many stopping criteria. You may, for instance,(1)stop splitting nodes whenever the data partition associated with the current node contains less thann instancesfor somenthat you pick empirically. We will refer to this as the minimalsizeforsplit criterion;(2)stop splitting nodes whenever the information gain resulting from a split is not sufficiently

high (even though it may be slightly higher than zero). You are free to empirically pick the minimum information gain that youd like to use. We will refer to this as the minimalgain criterion;(3)stop splitting whenever the current branch of the tree becomes too deepi.e., its depth becomes larger than some pre-defined value selected empirically by you. We will refer to this as the maximaldepth stopping criterion. You are free to choose which criterion (or criteriayou may combine them) you would like to use.In all questions below, do not forget to mention explicitly which criterion/criteria you used and what was its corresponding hyper-parameter. We encourage you to try different possibilities to identify the setting that produces the best possible performance for your algorithm.

Figure 1: Example of how to constructedstratifiedfolds to perform k-fold cross-validation. Here, we assume two classes: M and F. Notice how the complete dataset (shown in the leftmost figure) is not balanced: approximately 3/4 of its instances belong to the class M, and approximately 1/4 of its instances belong to the class F. We wish to approximately preserve these proportions (i.e., the proportion of instances of class M and the proportion of instances of class F) in each of thek= 5 folds. To do this, you should first split the original dataset,D, into two: one containing only instances of class M (sub-datasetDM), and another one containing only instances of class F (sub-dataset DF). Then, given the total number of instances in the original dataset (D) and the number of folds you are using (k), you should be able to determine the size of each fold. Let us assume that each fold, in this example, should have 50 instances. To construct it, you should draw random instances from DMandDF. In this example, 3/4 of the instances that you add to the current fold should come from DM, and 1/4 of the instances that you add to the current fold should come fromDF. Notice that because the folds should be disjoint (i.e., an instance should appear in only one fold), after drawing an instance either fromDMorDF, it should be removed from such a set to ensure that it will not be accidentally included as part of another fold.(Source: Stack Exchange).

In this homework you will be analyzing two datasets:
(1) The Wine DatasetThe goal, here, is to predict the type of a wine based on its chemical
contents. The dataset is composed of 178 instances. Each instance is described by 13numerical
attributes, and there are 3 classes.
(2) The 1984 United States Congressional Voting DatasetThe goal, here, is to predict the
party (Democrat or Republican) of each U.S. House of Representatives Congressperson. The dataset is
composed of 435 instances. Each instance is described by 16categoricalattributes, and there are 2
classes.
For each dataset, you should:
1.Train a random forest and evaluate it using the stratified cross-validation technique discussed
above. You should train random forests using different values for thentreeparameter: 1, 5, 10,
20, 30, 40, and 50.
2.For each value ofntree, you should measure the accuracy, precision, recall, and F1 score of the
resulting random forest.
3.You should then create, for each dataset and for each of the metrics described above, a graph where
you show the value ofntreeon the x-axis, and where you show the value of the corresponding
metric on the y-axis. For example, you should have one graph showing the accuracy of the
random forest as a function ofntreefor the dataset #1; another graph showing precision of the
random forest as a function ofntreefor the dataset #1; and similar types of graphs for the
other metrics and for dataset #2.These analyses should result in a total of 8 graphs.
Please indicate clearly, in the caption of each figure/graph, which results you are
presenting in the corresponding figure.
4.For each metric being evaluated (and for each dataset), discuss which value ofntreeyou would
select if you were to deploy this classifier in real life. Explain your reasoning.
5.Discuss (on a high level) which metrics were more directly affected by changing the value of
ntreeand, more generally, how such changes affected the performance of your algorithm. For
instance: was the accuracy of the random forest particularly sensitive to increasingntreepast a
given value? Was the F1 score a harder metric to optimize, possibly requiring a significant
number of trees in the ensemble? Is there a point beyond which adding more trees does not
improve performanceor makes the performance worse?
There are three ways in which we may receive extra credit in this homework.

(Extra Points #1: 6 Points)Reconstruct the same graphs as above, but now using the Gini criterion. You should present the same analyses and graphs mentioned above. Discuss whether (and how) different performance metrics were affected (positively or negatively) by changing the splitting criterion, and explain why you think that was the case.

(Extra Points #2: 6 Points)Analyze a third dataset: theBreast Cancer Dataset. The goal, here, is to classify whether tissue removed via a biopsy indicates whether a person may or may not have breast cancer. There are 699 instances in this dataset. Each instance is described by 9numerical

attributes, and there are 2 classes. You should present the same analyses and graphs as discussed
above. This dataset can be found in the same zip file as the two main datasets.

(Extra Points #3: 12 Points)Analyze a fourth, more challenging dataset: theContraceptive Method Choice Dataset. The goal, here, is to predict the type of contraceptive method used by a person based on many attributes describing that person. This dataset is more challenging because it combinesboth numerical and categorical attributes. There are 1473 instances in this dataset. Each instance is described by 9 attributes, and there are 3 classes. The dataset can be downloaded here. You should present the same analyses and graphs discussed above.