Homework 1 (Week 3)

$24.99 $18.99

Reminder: Policy on collaboration on all homework assignments [from syllabus, p.8]: Collaboration on techniques for solving homework assignments and computer problems is allowed, and can be helpful; however, each student is expected to work out, code, and write up his or her own solution. Use of other solutions to homework assignments or computer problems, from…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Categorys:
Tags:

Description

5/5 – (2 votes)

Reminder: Policy on collaboration on all homework assignments [from syllabus, p.8]:

Collaboration on techniques for solving homework assignments and computer problems is allowed, and can be helpful; however, each student is expected to work out, code, and write up his or her own solution. Use of other solutions to homework assignments or computer problems, from any source including other students, before the assignment is turned in, is not permitted.

Please turn in your Homework 1 solution by uploading 2 files to the Homework 1 (Week

  1. assignment dropbox in D2L, as follows. This is required.

    1. a single pdf file of your solutions / answers to all the homework problems. Please note:

      1. Your work can be handwritten or typeset. If handwritten, just scan it in, or take a picture with your smartphone and use a scan app to convert it to pdf; the result should look like a document-scanner result, not a photograph. Please do not upload pictures in native (picture) format; the quality will be very sensitive to lighting, and might not entirely readable.

      1. Please check the pdf for readability before uploading, and keep the file size reasonable (less than 5 MB).

    1. a second pdf file that contains all your computer code (for Problem 1, and for Problem 4 if you used a computer). This must be machine readable (not a scan, not a screenshot), and in a single file.

Thank you for cooperating; our grading methods depend on submissions as described above.

  1. Comparison of linear regression using least squares, ridge, and lasso.

Comment: for this homework problem, you may use Python libraries NumPy, sklearn, pandas, matplotlib, etc.

After learning the regression part and different regularizations, Bob is interested in trying them out right away! He starts with the linear regression problem: given that the feature vector and the observation have a linear relationship = + + , estimate the weight vector = [ #, $, … ] and the bias from multiple data points. For simplicity in writing, we can augment the feature space and now parameters to be estimated can be written as = [ , #, $, … ]. Here is the observation noise on the output labels y. Bob starts to collect some samples to generate his dataset. He does the collection for several times and gets several datasets with different numbers of samples:

Dataset2

50

1000

Dataset3

500

1000

Could you help him out on analysis on Datasets 1, 2, 3 above?

  1. Given that the dimension of features is 9 (before augmentation), estimate the and try three regularization settings: [no regularization, # regularization, $ regularization] and report the corresponding statistics. For each regularization setting to try, you need to search for a good regularization coefficient over the range −10 ≤ log$ ≤ 10 with step size of 0.5 for log$ , and use MSE (mean squared error) on the validation set to choose the best one. During the parameter search, you need to do 5-fold cross validation on each parameter value you try.

Tip: after finding the best value of , use that value for one final training run using all %& training data points (nothing held out as a validation set), to get the weight vector and training MSE.

    1. Fill all your numerical results into the following table. (Each dataset should have a different table. So for this question you’ll have 3 tables.)

    1. Based on statistics on all datasets, answer the following questions:

      1. Comparison of test MSE with no regularizer, # regularizer, and $ regularizer for a given %& (your answer might also depend on %&)

      1. Does each regularizer lower the corresponding norm of ? by very much? Please explain. Why are these answers different depending on %&?

      1. Observe and explain the dependence of sparsity on regression method, and on different values of %& and .

    • Std of MSE: the standard deviation of MSE of the 5-fold cross validation process for your chosen .

    • #( ): # norm of

    • $( ): $ norm of

    • Spars: Sparsity, i.e., the number of zeros in the augmented weight vector

  1. Bob learned that # regularization could lead to more sparsity, and he really wants to visualize this. So he collects Datasets 4-9, all for 2-dimensional (before augmentation) features:

number of training

number of testing

samples (

%&

)

samples

Dataset4

5

1000

Dataset5

15

1000

Dataset6

50

1000

Dataset7

5

1000

Dataset8

15

1000

Dataset9

50

1000

He tries them out and finds some expected and some unexpected results.

  1. Repeat (a)(i) for all new datasets. (You’ll have 6 tables.)

  1. For each dataset, draw the following plot in the 2D space $ vs. # with = your estimated : (1) draw the curve of ‘MSE = training MSE of your estimated and ‘MSE=10+training_MSE of your estimated ; (2) draw the curve for ‖ ‖‘# = the # norm of your estimated . Repeat this plot drawing for ridge regression results, except for (2) draw the curve for

‖ ‖‘$ = the $ norm of your estimated . (therefore you have 2 plots for each dataset. An example is shown below.)

  1. Based on the statistics and plots, answer the following questions:

    1. Observe and explain how the plots relate to sparsity.

    1. Can you explain how much effect the regularizer has, from looking at the plots (i.e., how different the regularized performance (MSE) is from the unregularized performance)

    2. Observe and explain how Lasso has a different effect with the “special case” datasets than the other datasets

Hint: please refer to the example.py code file in the homework folder on how to generate such plots.

  1. Estimating σ 2 in linear regression. You are given a Gaussian model:

H I , L = H I ( , $L and a dataset with N data points.

  1. Find the MLE of the variance σ$, for a given constant w = P .

  2. Is the assumption for part (a) that = P is a constant of $, reasonable? Justify your answer. (Hint: consider the MLE solution for P .)

  1. Nonlinear ridge regression. Suppose we use a basis function expansion ϕH L to make ridge regression nonlinear in . Thus the model is:

H I , L = R S ( H L, $U and the prior on is a Gaussian as stated in lecture.

    1. Let Φ be the data matrix. Give the objective function H , L in terms of Φ , , , and .

    1. Give the solution for P in terms of the same quantities. Briefly justify, or derive, your result.

  1. Comparison of loss functions in logistic regression (log exponential loss), perceptron, and mean-squared error criterion functions, for classification.

For this problem you may use python built-in functions, NumPy, and matplotlib. Note that Y) is binary with Y) ∈ {−1, +1}.

4

Throughout this problem, let si = y!i wT xi .

  1. For logistic regression based on MLE, the loss function is (Lecture 5, Eq. 22):

Ei(lr ) = ln 1+ exp{ y!i wT xi } .

Plot Ei( lr ) vs. si , twice: once for −10 ≤ * ≤ 10, and again for only −2 ≤ * ≤ 2 so that more detail can be viewed near * = 0. (2 plots total.)

  1. For 2-class linear perceptron learning (from EE 559), the objective function is:

(

)

N

i

T

i

%

i

T

i

N

( p)

J

w

=

#

w x

&

y!

w x

=

i

$ y!

0

E

i=1

i=1

Give an expression for the loss function

Ei( p)

in terms of *. Plot Ei( p) vs. si ,

twice: once for −10 ≤ * ≤ 10, and again for only −2 ≤ * ≤ 2 so that more detail can be viewed near * = 0. (2 plots total.)

  1. For the MSE objective function in a 2-class linear classification problem, the MSE can be written:

N

i bi 2

N

MSE =

1

w

T

x

= Ei( mse) .

N

i=1

i=1

in

which bi

is

the target value

for data

point i. Let

the target

value be

bi

= y!ii.

Write the loss function

E ( mse) in terms of

. (Hint: first insert y!

i

into the

i

above expression for MSE, in an

appropriate place, where it has no effect on

*

the MSE result.)

Plot

E ( mse) vs. s , twice: once for

, and

plots total.)

i

i

* = 0

2≤ *≤2

viewed near

again for only

so that more detail can be

10≤ *≤10

  1. Compare the plots of (a), (b), and (c) above. Describe how these 3 loss functions contribute differently to the objective function. (For example, compare the loss functions for correctly classified data points that are near the decision boundary, and that are far from the decision boundary; likewise, compare the loss functions for incorrectly classified data points that are near the decision boundary, and that are far from the decision boundary.)

5

Homework 1 (Week 3)
$24.99 $18.99