Starting from:

$25

COMP551-Assignment 1 Mode Selection,Gradient Descent for Regression and Real life dataset Solved

1           Model Selection
You have to use Dataset-1 for this experiment. Dataset-1 consists of train, validation, and test files. The input is a real valued scalar and the output is also a real valued scalar. The dataset is generated from an n-degree polynomial and a small Gaussian noise is added to the target.

1.   Fit a 20-degree polynomial to the data. Report the training and validation MSE (MeanSquare Error). Do not use any regularization. Visualize the fit. Comment about the quality of the fit.

2.   Now add L2 regularization to your model. Vary the value of λ from 0 to 1. For different values of λ, plot the training MSE and the validation MSE. Pick the best value of λ and report the test performance for the corresponding model. Also visualize the fit for the chosen model. Comment about the quality of the fit.

3.   What do you think is the degree of the source polynomial? Can you infer that from thevisualization produced in the previous question?

2           Gradient Descent for Regression
You have to use Dataset-2 for this experiment. Dataset-2 consists of train, validation, and test files. The input is a real valued scalar and the output is also a real valued scalar.

1.   Fit a linear regression model to this dataset by using stochastic gradient descent. Youwill do online-SGD (with one example at a time). Use the step size of 1e-6. Compute the MSE on validation set for every epoch. Plot the learning curve i.e. training and validation MSE for every epoch.

2.   Try different step sizes and choose the best step size by using validation data. Reportthe test MSE of the chosen model.

3.   Visualize the fit for every epoch and report 5 visualizations which shows how the regression fit evolves during the training process.

3           Real life dataset
For this question, you will use the Communities and Crime Data Set from the UCI repository (http://archive.ics.uci.edu/ml/datasets/Communities+and+Crime).

1.   This is a real-life data set and as such would not have the nice properties that we expect.Your first job is to make this dataset usable, by filling in all the missing values. Use the sample mean of each column to fill in the missing attribute. Is this is a good choice? What else might you use? If you have a better method, describe it, and you may use it for filling in the missing data. Turn in the completed data set.

2.   Fit the above data using linear regression. Report the 5-fold cross-validation error: TheMSE of the best fit achieved on test data, averaged over 5 different 80-20 splits, along with the parameters learnt for each of the five models.

3.   Use Ridge-regression on the above data. Repeat the experiment for different values ofλ. Report the MSE for each value, on test data, averaged over 5 different 80-20 splits, along with the parameters learnt. Which value of λ gives the best fit? Is it possible to use the information you obtained during this experiment for feature selection? If so, what is the best fit you achieve with a reduced set of features?

Instructions on how to use 80-20 splits
1.    Make 5 different 80-20 splits in the data and name them as CandC−trainhnumi.csv and CandC − testhnumi.csv.

2.    For all 5 datasets that you have generated, learn a regression model using the 80%data and test it using 20% data.

3.    Report the average MSE over these 5 different runs.

More products