Hello, if you have any need, please feel free to consult us, this is my wechat: wx91due
CS 273P: Machine Learning and Data Mining Homework 1
This homework (and many subsequent ones) will involve data analysis and reporting on methods and results using Python code. You have to submit a single PDF file that contains everything to Gradescope, and associated each page of the PDF to each problem. This includes any text you wish to include to describe your results, the complete code snippets of how you attempted each problem, any figures that were generated, and scans of any work on paper that you wish to include. It is important that you include enough detail that we know how you solved the problem, since otherwise we will be unable to grade it.
I recommend that you use Jupyter/iPython notebooks to write your report. It will help you not only ensure all of the code for the solutions is included, but also provide an easy way to export your results to a PDF file 1 . I recommend liberal use of Markdown cells to create headers for each problem and sub-problem, explaining your implementation/answers, and including any mathematical equations. For parts of the homework you do on paper, scan it in such that it is legible (there are a number of free Android/iOS scanning apps, if you do not have access to a scanner), and include it as an image in the iPython notebook2 . If you have any questions/concerns about using iPython, ask us on Piazza. If you decide not to use iPython notebooks, but go with Microsoft Word or Latex to create your PDF file, you have to make sure all of the answers can be generated from the code snippets included in the document.
Summary so far: (1) submit a single, standalone PDF report, with all code; (2) I recommed Jupyter notebooks.
Points: This homework adds up to a total of 100 points, as follows:
Problem 0: Get Connected 5 points
Problem 1: Python & Data Exploration 20 points
Problem 2: kNN Predictions 25 points
Problem 3: Naïve Bayes Classifiers 45 points
Statement of Collaboration 5 points
Problem 0: Get Connected (5 points)
Please visit our class forum on Piazza: https://piazza.com/uci/winter2021/cs273p/home. Piazza will be the place to post your questions and discussions, rather than by email to me or the TAs, since chances are that other students have the same or similar questions, and will be helped by seeing the discussion. Remember, your Piazza participation will be taken into account for the participation grade as well. You do not need to mention anything regarding this in the report, we will be able to check whether you have visited Piazza or not.
Problem 1: Python & Data Exploration (20 points)
In this problem, we will explore some basic statistics and visualizations of an example data set. First, download the zip file for Homework 1, which contains some course code (the mltools directory) and the “Fisher iris” data set, and load the latter into Python:
1 import numpy as np
2 import matplotlib.pyplot as plt
3
4 iris = np.genfromtxt("data/iris.txt",delimiter=None) # load the text file
5 Y = iris[:,-1] # target value is the last column
6 X = iris[:,0:-1] # features are the other columns
The Iris data consist of four real-valued features used to predict which of three types of iris flower was measured (a three-class classification problem).
1. Use X.shape to get the number of features and the data points. Report both numbers, mentioning which number is which. (5 points)
2. For each feature, plot a histogram ( plt.hist ) of the data values (5 points)
3. Compute the mean & standard deviation of the data points for each feature ( np.mean , np.std ) (5 points)
4. For each pair of features (1,2), (1,3), and (1,4), plot a scatterplot (see plt.plot or plt.scatter ) of the feature values, colored according to their target value (class). (For example, plot all data points with y = 0 as blue, y = 1 as green, etc.) (5 points)
Problem 2: kNN predictions (25 points)
In this problem, you will continue to use the Iris data and explore a KNN classifier using provided knnClassify python class. While doing the problem, please explore the implementation to become familiar with how it works.
First, we will shuffle and split the data into training and validation subsets:
1 iris = np.genfromtxt("data/iris.txt",delimiter=None) # load the data
2 Y = iris[:,-1]
3 X = iris[:,0:-1]
4
5 # Note: indexing with ":" indicates all values (in this case, all rows);
6 # indexing with a value ("0", "1", "-1", etc.) extracts only that value (here, columns);
7 # indexing rows/columns with a range ("1:-1") extracts any row/column in that range.
8
9 import mltools as ml 10 # We’ll use some data manipulation routines in the provided class code
11 # Make sure the "mltools" directory is in a directory on your Python path, e.g.,
12 # export PYTHONPATH=$\$${PYTHONPATH}:/path/to/parent/dir
13 # or add it to your path inside Python:
14 # import sys 15 # sys.path.append(’/path/to/parent/dir/’);
16
17
18 X,Y = ml.shuffleData(X,Y); # shuffle data randomly
19 # (This is a good idea in case your data are ordered in some pathological way,
20 # as the Iris data are)
21
22 Xtr,Xva,Ytr,Yva = ml.splitData(X,Y, 0.75); # split data into 75/25 train/validation
You may also find it useful to set the random number seed at the beginning (in general, for every assignment), e.g., numpy.random.seed(0) , to ensure consistent behavior each time.
Learner Objects Our learners (the parameterized functions that do the prediction) will be defined as python objects, derived from either an abstract classifier or abstract regressor class. The abstract base classes have a few useful functions, such as computing error rates or other measures of quality. More importantly, the learners will all follow a generic behavioral pattern, allowing us to train the function on a data set (i.e., set the parameters of the model to perform well on those data), and make predictions on a data set.
You can build now and train a kNN classifier on Xtr,Ytr and make predictions on some data Xva with it:
1 knn = ml.knn.knnClassify() # create the object and train it
2 knn.train(Xtr, Ytr, K) # where K is an integer, e.g. 1 for nearest neighbor prediction
3 YvaHat = knn.predict(Xva) # get estimates of y for each data point in Xva
4
5 # Alternatively, the constructor provides a shortcut to "train":
6 knn = ml.knn.knnClassify( Xtr, Ytr, K );
7 YvaHat = predict( knn, Xva );
If your data are 2D, you can visualize a data set and a classifier’s decision regions using e.g.,
1 ml.plotClassify2D( knn, Xtr, Ytr ); # make 2D classification plot with data (Xtr,Ytr)
This function plots the training data and colored points as per their labels, then calls knn ’s predict function on a densely spaced grid of points in the 2D space, and uses this to produce the background color. Calling the function with knn=None will plot only the data.
1. Modify the code listed above to use only the first two features of X (e.g., let X be only the first two columns of iris , instead of the first four), and visualize (plot) the classification boundary for varying values of K = [1, 5, 10, 50] using plotClassify2D . (10 points)
2. Again using only the first two features, compute the error rate (number of misclassifications) on both the training and validation data as a function of K = [1, 2, 5, 10, 50, 100, 200]. You can do this most easily with a for-loop:
1 K=[1,2,5,10,50,100,200];
2 for i,k in enumerate(K):
3 learner = ml.knn.knnClassify(... # TODO: complete code to train model
4 Yhat = learner.predict(... # TODO: predict results on training data
5 errTrain[i] = ... # TODO: count what fraction of predictions are wrong
6 #TODO: repeat prediction / error evaluation for validation data
7
8 plt.semilogx(... #TODO: average and plot results on semi-log scale
9
Plot the resulting error rate functions using a semi-log plot ( semilogx ), with training error in red and validation error in green. Based on these plots, what value of K would you recommend? (10 points)
3. Provide the same plots as the previous, but with all the features in the dataset. Are the plots very different? Is your recommendation different? (5 points)
Problem 3: Naïve Bayes Classifiers (45 points)
In order to reduce my email load, I decide to implement a machine learning algorithm to decide whether or not I should read an email, or simply file it away instead. To train my model, I obtain the following data set of binaryvalued features about each email, including whether I know the author or not, whether the email is long or short, and whether it has any of several key words, along with my final decision about whether to read it (y = +1 for “read”, y = −1 for “discard”).
x1 know author? |
x2 is long? |
x3 has ‘research’ |
x4 has ‘grade’ |
x5 has ‘lottery’ |
y ⇒ read? |
0 1 0 1 0 1 0 1 1 1 |
0 1 1 1 1 0 0 0 0 1 |
1 0 1 1 0 1 1 0 1 1 |
1 1 1 1 0 1 0 0 1 1 |
0 0 1 0 0 1 0 0 0 1 |
-1 -1 -1 -1 -1 1 1 1 1 -1 |
In the case of any ties, we will prefer to predict class +1.
I decide to try a naïve Bayes classifier to make my decisions and compute my uncertainty.
1. Compute all the probabilities necessary for a naïve Bayes classifier, i.e., the class probability p(y) and all the individual feature probabilities p(xi |y), for each class y and feature xi (10 points)
2. Which class would be predicted for x = (0 0 0 0 0)? What about for x = (1 1 0 1 0)? (10 points)
3. Compute the posterior probability that y = +1 given the observation x = (1 1 0 1 0). (5 points)
4. Why should we probably not use a “joint” Bayes classifier (using the joint probability of the features x, as opposed to a naïve Bayes classifier) for these data? (10 points)
5. Suppose that, before we make our predictions, we lose access to my address book, so that we cannot tell whether the email author is known. Should we re-train the model, and if so, how? (e.g.: how does the model, and its parameters, change in this new situation?) Hint: what will the naïve Bayes model over only features x2 . . . x5 look like, and what will its parameters be? (10 points)
Statement of Collaboration (5 points)
It is mandatory to include a Statement of Collaboration in each submission, with respect to the guidelines below. Include the names of everyone involved in the discussions (especially in-person ones), and what was discussed.
All students are required to follow the academic honesty guidelines posted on the course website. For programming assignments, in particular, I encourage the students to organize (perhaps using Piazza) to discuss the task descriptions, requirements, bugs in my code, and the relevant technical content before they start working on it. However, you should not discuss the specific solutions, and, as a guiding principle, you are not allowed to take anything written or drawn away from these discussions (i.e. no photographs of the blackboard, written notes, referring to Piazza, etc.). Especially after you have started working on the assignment, try to restrict the discussion to Piazza as much as possible, so that there is no doubt as to the extent of your collaboration.
Acknowledgements
This homework is adapted (with minor changes) from notes made available by Alex Ihler and Sameer Singh.