Description
Question 1. [50 points]
In this question you will implement an autoencoder neural network with a single hidden
layer for unsupervised feature extraction from natural images. The following cost function
will be minimized:
Jae =
1
2N
X
N
i=1
kd(m) − o(m)k
2 +
λ
2
L
X
hid
b=1
X
Lin
a=1
(W
(1)
a,b )
2
+
L
X
out
c=1
L
X
hid
b=1
(W
(2)
b,c )
2
+ β
L
X
hid
b=1
KL(ρ|ρˆb)
(1)
The first term is the average squared-error between the desired response and the network
output across training samples. Note that the desired output is the same as the input. The
second term enforces Tykhonov regularization on the connection weights with parameter
λ. The last term enforces that the hidden unit activations are sparse with parameter β for
controlling the relative weighting of this term. The level of sparsity is tuned via ρ in the KL
term (Kullback-Leibler divergence) between a Bernouilli variable with mean ρ and another
with mean ˆρb
. ˆρb
is the average activation of hidden unit b across training samples.
a) The file assign3_data1.mat contains a collection of 16×16 RGB patches extracted from
various natural images in data. Preprocess the data by first converting the images to
graysale using a luminosity model: Y = 0.2126 ∗ R + 0.7152 ∗ G + 0.0722 ∗ B. To normalize
the data, first remove the mean pixel intensity of each image from itself, and then clip the
data range at ±3 standard deviations (measured across all pixels in the data). To prevent
saturation of the activation function, map the ±3 std. data range to [0.1 0.9]. Display 200
random sample patches in RGB format, and separately display the normalized versions of
the same patches. Comment on your results.
b) Prior to training, initialize the weights and the bias terms as uniform random numbers
from the interval [−wo, wo], where wo = sqrt(
6
Lpre+Lpost
) and Lpre,post are the number of
neurons on either side of the connection weights. Write a cost function for the network
[J, Jgrad] = aeCost(We, data, params) that calculates the cost and its partial derivatives.
We = [W1 W2 b1 b2], a vector containing the weights for the first and second layers followed
by the bias terms; data is of size Lin×N; params is a structure with the following fields Lin
(Lin), Lhid (Lhid), lambda (λ), beta (β), rho (ρ). Use J and Jgrad as inputs to a gradientdescent solver to minimize the cost. Assuming Lhid = 64, λ = 5 × 10−4
, experiment with
β, ρ to find parameters that work well. Note that performance here is defined based on the
‘quality’ of the features extracted by the network.
c) The solver will return the trained network parameters. Display the first layer of connection weights as a separate image for each neuron in the hidden layer. What do the
hidden-layer features look like? Are these features representative of natural images?
d) Retrain the network for 3 different values (low, medium, high) of Lhid ∈ [10 100], of
λ ∈ [0 10−3
], while keeping β, ρ fixed. Display the hidden-layer features as separate images. Comparatively discuss the results you obtained for different combinations of training
parameters.
Question 2. [50 points]
The goal of this question is to introduce you CNN models. You will be experimenting with
two demos, one on a CNN model in Python, and a second on a CNN model in one of two
popular frameworks (PyTorch or TensorFlow). Download demo_cnn.zip from Moodle and
unzip it. The demos are given as Jupyter Notebooks along with relevant code and data.
The easiest way to install Jupyter with all Python and related dependencies is to install
Anaconda. After that you should be able to run through demos in your browser easily.
The point of these demos is that they take you through the training algorithms step by
step, and you need to inspect the relevant snippets of code for each step to learn about
implementation details.
a) The notebook Convolutional_Networks.ipynb contains demonstrations on a CNN
model. You need to run the demo till the end without any errors. You are supposed
to convert the outputs of the completed demo to a PDF file, and attach it to the project
report. You should also comment on your results.
b) The notebooks PyTorch.ipynb and TensorFlow.ipynb contain demonstrations on a
CNN model in deep learning frameworks. Please pick a single framework to work with
(PyTorch has a Python like feeling but might have limited visualization options, and TensorFlow might have a steeper learning curve but is better equipped with supporting tools).
You need to run the selected demo till the end without any errors. You are supposed to
convert the outputs of the completed demo to a PDF file, and attach it to the project report.
You should also comment on your results.