Homework 5 (Week 7)

$24.99 $18.99

In this problem, you will code up a linear regressor based on the MSE criterion function. You will also investigate different learning rate parameter schedules and their effect on convergence in iterative gradient descent (GD) optimization. Coding yourself. As in previous homework assignments, in this problem you are required to write the code yourself; you…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)
  1. In this problem, you will code up a linear regressor based on the MSE criterion function. You will also investigate different learning rate parameter schedules and their effect on convergence in iterative gradient descent (GD) optimization.

Coding yourself. As in previous homework assignments, in this problem you are required to write the code yourself; you may use only Python built-in functions, NumPy, and matplotlib; you may use the “random” module because it is part of the Python standard library; and you may use pandas only for reading and/or writing csv files.

Dataset. Throughout this problem, you will use a real dataset based on the “Combined Cycle Power Plant Data Set” [https://archive.ics.uci.edu/ml/datasets/combined+cycle+power+plant]

from the UCI Machine Learning Repository .

We have subsampled the data (to save on computation time) and preprocessed it, so be sure to use the dataset files h5w7_pr1_power_train.csv and h5w7_pr1_power_test.csv provided with this homework assignment. There are a total of 500 data points, with a split of 75% of points in the training set, and 25% of points in the test set.

The dataset has 4 real-valued features: temperature (T), ambient pressure (AP), relative humidity (RH), and exhaust vacuum (V). The output value ! is the net hourly electrical energy output (EP). Note that the 5th column in the dataset files is the output value. We have normalized the input features already, so that each input feature value is in the range

0≤ !”≤1.

      1. This part does not require any coding. Do the convergence criteria given in Lecture 10, page 12 for MSE classification, also apply to MSE regression? Justify your answer.

Hint: compare the weight update formulas.

        1. 1 of 4

( ) =

Answer the parts below as instructed, regardless of your answer to (a).

Please code the regressor as follows:

  1. Code a linear MSE regressor that uses iterative GD for optimization (LMS algorithm); use basic sequential GD. The schedule to use for η(i) will be given below. Hints on how to perform the random shuffle are given in Homework 4.

  1. For the initial weight vector, let each w# = a random number drawn independent and identically distributed (i.i.d.) according to the uniform density function

[−0.1, +0.1]. Hint: use numpy.random.uniform().

  1. Before the first epoch (at = 0, call it epoch = 0), and at the end of each epoch, compute and store the RMS error for epoch m as:

*

$(()%& = 6 8 :;+

    1. For halting condition, halt when either one of these 2 conditions are met, and have the code output which halting condition was reached:

iv.1 E,(/). < 0.001E,(0).

iv.2 100 epochs have been completed.

    1. When the iterations halt, store the final value of as > for each value of ( , ) (as described below), in a table.

    2. You will also need a function that gives the output prediction A8 : for any given input , given the optimal w> from the learning algorithm.

  1. In this part you try a learning rate parameter of the form:

+

in which i is the iteration index (increases by 1 with each successive data point). Try a grid search over the following values: = 0.01, 0.1, 1, 10, 100 , and = 1, 10, 100, 1000 (i.e., use two nested loops to try all combinations of A and B). For each pair (A, B), plot a learning curve as $(()%&  .   .

Tip: do 5 plots total, one plot for each value of A. Have each plot show 4 curves (one curve for each value of B).

  1. Comment on the dependence of the learning curves on A and B.

  1. Pick the resulting best pair ( , ) from (b) above (based on final $(()%& for each pair), and use its value of > to calculate the $%& error on the test set.

  1. As a comparison, consider a trivial regressor that always outputs A8 : = H = {mean value of the outputs over the training data}. Calculate the $%& of this trivial regressor on the test set. Is your regressor’s error from (d) substantially lower than the error of this trivial regressor?

In lecture we derived the solution weight vector wˆ(+) for ridge regression, in which the entire augmented weight vector is regularized. Often the non-augmented weight vector is regularized, and the bias term w0 is used to help minimize the MSE but is not regularized. For this case, the criterion function becomes:

J (w) = X (+) w(+) y 2 + λ w(0) 2

2 2

Derive the optimal weight vector solution wˆ(+) for this case.

Hint: use augmented notation throughout, and make use of the diagonal matrix

I = diag {0,1,1,!,1}.

  1. In this problem, you will implement a nonlinear mapping from a 2D feature space to an expanded feature space, perform learning in the expanded space, then map the resulting decision regions into a more optimal 2D space, and separately into the original 2D feature space. Most of this you will do on computer; you will have help on the coding in the form of given functions and tips. You may use non-built-in functions from libraries like sklearn only where specifically stated as allowed or where you are given sklearn classes or functions to use. If you are not yet familiar with OOP in Python, this problem gives you a good opportunity to try it.

The file h5w7_pr3_helper_functions.py contains functions that will help you complete the problem and the file h5w7_pr3_data.csv contains the synthetic dataset. Each data point is represented by two features, * and +, and it may belong to class 1 or class 2. You will use all the data points in every one of the following parts.

    1. Plot the data points in (non-augmented) feature space. Use different colors or different markers to indicate the class to which each point belongs. Without running any learning algorithm, state whether you think this data set is linearly separable in this feature space.

    1. Use sklearn’s implementation of the perceptron to train a perceptron on this dataset. Obtain and report the classification accuracy.

Hints:

      1. Sklearn’s perceptron documentation at https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Perceptron.html contains an example of how to use this class.

      2. You can either use the score method to directly obtain the mean accuracy or the predict method, which will return the predicted labels for each sample.

      1. This dataset is already centered, that is, the mean of each feature is zero.

False. Use the default value for all other parameters.

w>0

,

fit_intercept

, to

Therefore, you should set the parameter for finding

  1. Plot the learned decision boundaries from the perceptron in item (b).

We provide two functions to help with this task, but you can also code your own.

    1. 3 of 4

Hints:

  1. The function linear_decision_function implements the perceptron linear decision function. You do not need to call it in your code. It is called automatically by the plotting function.

  1. The function plot_perceptron_boundaries takes as parameters, in addition to the training data, the learned weights and a decision function. Here’s an example of how to call it with the linear_decision_function:

weights = classifier.coef_[0] # get the perceptron weights plot_perceptron_boundaries(X_train, y_train, weights,

linear_decision_function)

in which classifier is a trained perceptron object.

Also note that the provided function returns a figure object, which can be used to programmatically save the plot.

  1. Let’s try to use a quadratic feature space expansion to improve the result above, i.e.,

( *, +) → ( *, +, * +, *+, ++)

Code a function to apply the feature expansion procedure to the entire dataset. Then train a perceptron on the expanded dataset and report its classification accuracy. Is the dataset linearly separable in the expanded feature space?

Hint: remember that you do not need to add the bias term.

  1. [Extra credit] We want to plot the decision boundary and regions as a function of the 2 most relevant features of the expanded feature space. For this, follow these steps:

    1. Provide the learned weight vector from item (d)

    1. Which two features received the highest weights in absolute value? Note: your answer must be two elements from ( *, +, * +, *+, ++). Write the decision function only in terms of these two features and their weights.

    1. Create a new feature matrix that contains only the two most relevant features found above. Create a new weight vector that contains only the two highest weights in absolute value.

    1. Call the plotting function with the new feature matrix and new weight vector. Example:

plot_perceptron_boundaries(phi_X_best_2,y_train, weights_best_2, linear_decision_function)

Is the dataset linearly separable in this feature space?

  1. [Extra credit] Next, we want to plot the decision boundary and regions in the original feature space. To do this, you need to code the decision function in the original feature space. The skeleton of the nonlinear_decision_function is already

provided. You can call the plotting function as:

plot_perceptron_boundaries(X_train, y_train, relevant_weights nonlinear_decision_function)

p. 4 of 4

Homework 5 (Week 7)
$24.99 $18.99