Assignment 3 Solved

$24.99 $18.99

Design a convolutional neural network in Keras of at least 10 convolutional layers. Use the MNIST dataset for evaluation. You must try three designs as detailed below and provide your observations on the performance of each: A regular CNN where the number of filters in each layer increases as the depth of the network grows…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)

Design a convolutional neural network in Keras of at least 10 convolutional layers. Use the MNIST dataset for evaluation. You must try three designs as detailed below and provide your observations on the performance of each:

  1. A regular CNN where the number of filters in each layer increases as the depth of the network grows i.e., the Lth layer will have more filters than the (L-1)th layer.

  1. An inverted CNN where the number of filters in each layer decreases as the depth of the network grows i.e., the Lth layer will have less filters than the (L-1)th layer.

  2. An hour-glass shaped CNN where the number of filters will increase till the Lth layer and

reduce afterwards.

Your goal is to design these networks and optimize them to their best performance by choosing the right hyperparameters for each network, such as the learning rate, batch size and the choice of optimizer (‘SGD’, ‘adam’, ‘RMSProp’). You must provide a detailed report of what values you tried for each hyperparameters, your observations on why the network performed well (or not) and the final accuracy for each network on the MNIST dataset.

You can refer to the Keras documentation for more details.

[Question 2] [25 points]

Implement the LeNet Convolutional Neural Network using Keras. It is a seven-layer network with three convolutional layers, two max-pooling layers and 2 dense layers. The structure is shown below:

Layer 1: convolution layer with 6 convolution kernels of 5×5 with stride 1

Layer 2: max-pooling layer with 2×2 kernels with stride 2

Layer 3: convolution layer with 16 convolution kernels of 5×5 with stride 1

Layer 4: max-pooling layer with 2×2 kernels with stride 2

Layer 5: convolution layer with 120 convolution kernels of 5×5

Layer 6: dense layer with 84 neurons

Layer 7: output layer

Use the ‘Adam’ optimizer to train your network on the CIFAR-10 dataset for a fixed set of 25 epochs. You can use the built-in functions to load the data. Each image is 32x32x3 matrix and you will have 60,000 images for training and 10,000 for test. There are 10 classes in the dataset each representing an object in the image.

Perform the following analysis and answer each question briefly (3-5 sentences). Use plots and figures as necessary.

What is the effect of learning rate on the training process? Which performed best?

  1. What is the effect of batch size on the training process? Which performed best?

  1. Try different hyperparameters to obtain the best accuracy on the test set. What is your best performance and what were the hyperparameters?

  1. Implement an equivalent feed forward network for the same task with each hidden layer containing the same number of neurons as the number of filters in each convolution layer.

Use the ‘Adam’ optimizer to train your network on the CIFAR-10 dataset for a fixed set of 25 epochs. Compare its performance with your LeNet implementation based on the following questions:

    1. What is its performance?

    1. How many parameters are there in this network compared to the LeNet implementation? Are they worth it?

[Question 3] [10 points]

Consider the below matrices as input (X) and convolutional kernel f. Consider that the depth of the input is 1.

Compute the following:

  1. What are the dimensions of the input and the kernel (or filter)? How many parameters are there in the kernel f? [2 points]

  1. What is the output activation map when you apply the convolutional operation using the filter f on the input X without padding? [4 points]

  1. What is the output when you apply a max-pooling operation on the output from the previous question? [4 points]

Note: For parts 2 and 3 in question 3, please provide the actual output. You can work this one out by hand or write your own code to do it. Provide documentation of how you got the outputs.

Assignment 3 Solved
$24.99 $18.99