Assignment-3 Solution

$35.00 $29.00

Please use Google Classroom to upload your submission by the deadline mentioned above. Your submission should comprise of a single ZIP le, named <Your Roll No> Assign3, with all your solutions, including code. For late submissions, 10% is deducted for each day (including weekend) late after an assignment is due. Note that each student begins…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)

Please use Google Classroom to upload your submission by the deadline mentioned above. Your submission should comprise of a single ZIP le, named <Your Roll No> Assign3, with all your solutions, including code.

For late submissions, 10% is deducted for each day (including weekend) late after an assignment is due. Note that each student begins the course with 7 grace days for late submission of assignments. Late submissions will automatically use your grace days balance, if you have any left. You can see your balance on the CS5370 Marks and Grace Days document.

You have to use Python for the programming questions.

Please read the department plagiarism policy. Do not engage in any form of cheating – strict penalties will be imposed for both givers and takers. Please talk to instructor or TA if you have concerns.

1 Exercises

For theory questions denoted by (T) against the question, we would prefer you type your answer in LaTeX and upload your PDF – it is a good learning by itself. If you absolutely need, you can handwrite and upload your scanned report, but please ensure the answers are readable – you will be accountable for the readability if you choose this option!

For programming questions, denoted by (P) against the question, please upload your code, and include your observations in a report.

  1. (T) (3 marks) Show for a feedforward network with ‘tanh’ hidden unit activation functions, and a sum-of-squares error function, that the origin in weight space is a stationary point of the error function.

  1. (T+P) (2+3=5 marks) Consider a quadratic error function in two dimensions of the form:

    • = 12 1w12 + 12 2w22

  1. Verify that 1 and 2 are the eigenvalues of the corresponding Hessian matrix.

1

      1. Write a simple numerical implementation of the gradient descent algorithm, and apply it to the minimization of this error function for the case where the ratio of the eigenvalues 2= 1 is large (say, 10:1). Explore the convergence property of the algorithm for various values of the learning rate parameter, and verify that the largest value of the learning rate that still leads to a reduction in E is determined by the ratio of the two eigenvalues.

  1. (P) (22 marks) Occupancy Detection using MLPs: Consider the Occupancy Detection dataset from the UCI Machine Learning repository. This dataset consists of experimental data used for binary classi cation of room occupancy (i.e., room is occupied versus empty) based on temperature, humidity, light, and CO2 sensors. The training and test data sets are each collected over a week period. Information about the data set and how it has been used in academic publications can be found at https://archive.ics.uci.edu/ml/datasets/Occupancy+Detection+.

The training data (8144 in number) and test data (9753 in number) are provided with this assignment. The data set includes time stamps with date and hour/minute/second within the day. The goal is to determine whether occupancy can be sensed from: (1) temperature, expressed in degrees Celsius,

    1. relative humidity, expressed as a %, (3) light, in lux, (4) CO2, in ppm, and (5) the humidity ratio, which is derive from the temperature and the relative humidity. You are not to use time stamp features for predicting occupancy. Since this is a commercial o ce building, the time stamp is a strong predictor of occupancy.

      1. (3 marks) Use PyTorch to build a feedforward neural net with a single hidden layer and train using backprop and binary cross-entropy to predict occupancy. Your network will have 5 input units and 1 output unit. As a way of testing your code, set the learning rate very small and set N to be the training set size (i.e., you’re doing batch training). In this situation, you should be guaranteed that the error monotonically decreases over epochs of training.

      1. (1 mark) As a measure of getting a baseline performance, predict a random label for each input data point in the test. Rather, run 5 trials and use the max vote of the predictions as the baseline method, and obtain a baseline accuracy (for test data). We will use this in the upcoming questions.

      1. (4 marks) Using a network with H=5 hidden units, and mini-batches of size N=100 (you will be using mini-batch SGD), select a learning rate (or a learning rate schedule) that results in fairly consistent drops in error from one epoch to the next. Make a plot of the training error as a function of epochs. On this graph, show a constant horizontal line for the baseline error. (If your network doesn’t drop below this baseline, there’s something going awry.) Train your net until you’re sure the training error isn’t dropping further (i.e., a local optimum has been reached). Report the learning rate (or learning rate schedule) you used to produce the plot. Report training and test set performance in terms of % examples classi ed correctly.

      1. (2 marks) What happens if you use batch gradient descent instead of SGD? Make a plot of the performance for batch GD, and report your observations.

      1. (4 marks) Now train nets with varying size, H, in 1, 2, 5, 10, 20. You may have to adjust your learning rates based on H, or use a method for setting learning rates to be independent of H (you can use Adam/Adagrad/RMS/other methods). Decide when to stop training the net based on training set performance. Make a plot, as a function of H, of the training and test set performance in terms of % examples classi ed correctly.

      1. (5 marks) Report what happens to all the above graphs if you use mean-squared error as the loss function (instead of cross-entropy).

      1. (3 marks) Add a second hidden layer, and train a few architectures with 2 hidden layers. Report what architectures you tried (expressed as 5-h1-h2-1, i.e., 5 input, h1 hidden in rst layer, h2

2

hidden in second layer, and one output unit), and which ones, if any, outperform your single-hidden-layer network.

To Submit: Your code and your observations as a report.

  1. (P) (15 marks) Convolutional Neural Networks on MNIST: For this question, you will experi-ment with convolutional Neural Networks, using PyTorch. You can use the provided PyTorch exam-ples for this assignment (https://github.com/pytorch/examples/blob/master/mnist/main.py). Modify the code provided in the tutorials to answer the following questions.

    1. (3 marks) Replace the ReLUs in the code with sigmoid units, and compare the training and testing accuracies of both the models. Discuss the results (i.e., explain why one type of unit performs better than the other).

    1. (4 marks) Compare the accuracy achieved when varying the level of dropout in a CNN. Modify the CNN code to run with the DropOut probability set to 0.25, 0.5, 0.75 and 1 (documentation at http://pytorch.org/docs/master/_modules/torch/nn/modules/dropout.html). You can reduce the number of iterations to avoid waiting too long, if required. Report the training and testing accuracy for each DropOut setting. Discuss the results (i.e., explain how the parameter a ects the classi er and whether the results are as expected).

    1. (4 marks) Include batch normalization in your ReLU model with the best DropOut setting that you achieved. Report the training and testing accuracy, and your observations on the perfor-mance. Now, remove DropOut from your network – what do you see? Report the performance, and your observations.

    1. (4 marks) Lastly, consider your model with ReLU units and batch normalization (no DropOut). Does batch normalization help in di erent weight initializations (documentation at http:// pytorch.org/docs/master/_modules/torch/nn/init.html; ensure you include at least one of Xavier’s and Kaiming’s initializations from the documentation in your studies)? Report the training and testing accuracy, and your observations on the performance.

To Submit: Your code and your observations as a report.

3

Assignment-3 Solution
$35.00 $29.00