Artificial Intelligence Homework 3

$24.99 $18.99

1. Overview In this programming homework, you will implement a multi-layer perceptron (MLP) neural network and use it to classify hand-written digits shown in Figure 1. You can use numerical libraries such as Numpy/Scipy, but machine learning libraries are NOT allowed (including tensorflow (v1&v2), caffe, pytorch, torch, cxxnet, and mxnet). You need to implement feedforward/backpropagation…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Categorys:

Description

5/5 – (2 votes)

1. Overview

In this programming homework, you will implement a multi-layer perceptron (MLP) neural network and use it to classify hand-written digits shown in Figure 1. You can use numerical libraries such as Numpy/Scipy, but machine learning libraries are NOT allowed (including tensorflow (v1&v2), caffe, pytorch, torch, cxxnet, and mxnet). You need to implement feedforward/backpropagation as well as training process by yourselves.

2. Data Description

In this assignment you will use MNIST dataset (http://yann.lecun.com/exdb/mnist/). You can read its description from the url above. This dataset consists of four files:

  1. Training set images, which contains 60,000 28 × 28 grayscale training images, each representing a single handwritten digit.

  1. Training set labels, which contains the associated 60,000 labels for the training images.

  1. Test set images, which contains 10,000 28 × 28 grayscale testing images, each representing a single handwritten digit.

  1. Test set labels, which contains the associated 10,000 labels for the testing images.

File 1 and 2 are the training set. File 3 and 4 are the test set. Each training and test instance in the MNIST database consists of a 28 × 28 grayscale image of a handwritten digit and an

associated integer label indicating the digit that this image represents (0-9). Each of the 28 × 28

  • 784 pixels of each of these images is represented by a single 8-bit color channel. Thus, the values each pixel can take on range from 0 (completely black) to 255 (28 − 1, completely white). If you are interested, the raw MNIST format is described in http://yann.lecun.com/exdb/mnist/.

For your convenience, we will use the .csv version of the dataset for submission and grading. In order to access it, please download mnist.pkl.gz and mnist_csv3.py from HW3->resource->asnlib->public to your local machine and run the following command:

python3 mnist_csv3.py

After that, you should be able to see File 1, 2, 3, 4. The format of our csv files will be described in the Section 3 Task description below.

You can train and test your own networks locally with the whole or partial dataset. When you submit, we provide a subset of MNIST for your training/testing (not for grading). We reserve the grading training/testing set (but it must be a subset of MNIST).

As an option, note that File 1 and 3 could be combined into File1+3, and File 2 and 4 can be combined into File2+4 (with the same index as File1+3). Viewed this way, the whole data will be contained in these two files: File1+3 contains all the images, and File2+4 contains all the labels of the images. One advantage of this is that one could partition the whole data into training and testing sets anyway that is desired. You may easily modify mnist_csv3.py or simply merge the .csv files to achieve this option.

3. Task description

Your task is to implement a multi-hidden-layer neural network learner (see model description part for details of neural network you need to implement), that will

  1. Construct a neural network classifier from the given labeled training data,

  1. Use the learned classifier to classify the unlabeled test data, and

  1. Output the predictions of your classifier on the test data into a file in the same directory,

  1. Finish in 30 minutes (for both training your model and making predictions).

Your program will take three input files and produce one output file as follows:

run your_program train_image.csv train_label.csv test_image.csv

  • test_predictions.csv

For example,

python3 NeuralNetwork.py train_image.csv train_label.csv test_image.csv

  • test_predictions.csv

You must implement the algorithm yourself. Please develop your code yourself and do not copy from other students or from the Internet.

The format of ***_image.csv looks like:

a1, a2, a3, …… a784

b1, b2, b3, …… b784

……

Where x1, x2, and x3 are the pixels, so each row is an image. Each file contains at least one image and at most 60000 images.

The train_label.csv and your output test_predictions.csv will look like

1

0

2

5

  • (A single column indicates the predicted class labels for each unlabeled sample in the input test file)

The format of your test_predictions.csv file is crucial. It has to be in the exact same name and format so that it can be parsed correctly to compare with true labels by the AI auto-grading scripts automatically.

When we grade your algorithm, we will use hidden training data and hidden testing data (randomly picked from MNIST) instead of the testing data that was given to you for submission. Your code will be autograded for technical correctness. Please name your file correctly, or you will wreak havoc on the autograder. The maximum running time to train and test a model is 30 minutes (for both training and testing), so please make sure your program finishes in 30 minutes.

As listed in Section 6, we have two sets to train and evaluate your model. Your model would be trained and evaluated on those two sets independently. The running time limitation is applied for training and evaluating on one of the sets.

4. Model description

activation function (see references below). Since it is a multi-class classification problem, you need to use softmax function (see references below) as activation at the final output layer to generate probability distribution of each class. For computing loss, you need to use the cross entropy loss function. (see references below) There is no specific requirement on the number of nodes in each layer, you need to choose them to make your neural network reach best performance. Also, the number of nodes in the input layer should be the number of features, and the number of nodes in the output layer should be the number of classes.

Figure 2: Example Network Configurations.

  • Learning rate: step size for update weights (e.g. weights = weights – learning * grads), different optimizers have different ways to use learning rate. (see reference in 2.1)

  • Batch size: number of samples processed each time before the model is updated. The size of a batch must be more than or equal to one, and less than or equal to the number of samples in the training dataset. (e.g suppose your dataset is of 1000, and your batch size is 100, then you have 10 batches, each time you train one batch (100 samples) and after 10 batches, it trains all samples in your dataset.)

  • Number of epoch: the number of complete passes through the training dataset (e.g. you have 1000 samples, 20 epochs means you loop this 1000 samples 20 times, suppose your batch size is 100, so in each epoch you train 1000/100 = 10 batches to loop the entire dataset and then you repeat this process 20 times)

  • Number of units in each hidden layer

Remember that the program has to finish in 30 minutes, so choose your hyper-parameters wisely.

Learning Curve Graph (we will not grade it but it may help)

In order to make sure your neural network actually learns something, You may need to make a plot to show the learning process of your neural networks. After every epoch (one epoch means going through all the samples in your training data once), it may be a good idea to record your accuracy on the training set and the validation set (it is just the test set we give you) and make a plot of those accuracy as shown in the figure on the right.

5. Implementation Guidance

Suggested Steps

  1. Split the dataset into batches

  1. Initialize weights and bias

  1. Select one batch of data and calculate forward pass – follow the basic structure of the neural network to compute output for each layer, you might need to cache output of each layer for the convenience of backward propagation.

  2. Compute loss function – you need to use cross-entropy (logistic loss – see references above) as loss function

  1. Backward propagation – use backward propagation (your implementation) to update hidden weights

  1. Updates weights using optimization algorithms – there are many ways to update weights you can use plain SGD or advanced methods such as Momentum and Adam. (but you can get full credit easily without any advanced methods)

  1. Repeat 2,3,4,5,6 for all batches – after finishing this process for all batches (it just iterates all data points of the dataset), it is called ‘one epoch’.

  1. Repeat 2,3,4,5,6,7 number of epochs times– You might need to train many epochs to get a good result. As an option, you may want to print out the accuracy of your network at the end of each epoch.

  1. Try other weights initialization methods such as Xavier initialization.

  1. Try dropout or batchnorm.

And so on, but you DO NOT really need them to achieve our accuracy goal. A “vanilla” or naive implementation with proper learning rate can work very well by itself.

DO NOT USE ANY existing machine learning library such as Tensorflow and Pytorch.

6. Submission and Grading

As described previously, we will provide 3 input files (train_image.csv train_label.csv

test_image.csv) in your working path. Your program file should be named as

NeuralNetwork.***. (if you are using python3 or C++11, name it as

NeuralNetwork3.py/NeuralNetwork11.cpp) and output a file

test_predictions.csv. You need to make sure the output file name is exactly the same.

The training/testing dataset will be different in submission and grading, but they are subsets

from MNIST.

Grading would be conducted on two sets.

  1. MNIST Set

    1. Training: 10,000 images that are randomly sampled from MNIST dataset.

    1. Testing: 10,000 images that are randomly selected from MNIST dataset.

    1. There is no overlap between the training and testing images.

  1. TA Set:

    1. Training: 10,000 images that are randomly sampled from MNIST dataset.

    1. Testing: 120 hand-written images created by Homework3 team.

Grading is based on your prediction accuracy on both testing sets. We would evaluate your model on those two sets separately. The final grade would be a weighted average of the credits for both testing sets:

Final Grade = 0.6 * Credit(MNIST set) + 0.4 * Credit(TA set)

On the MNIST set, we hope you can get at least 90% accuracy, any result better than 90% will get all credit for this set. Results between 50% and 90% will get 50% credit for this set, but if your accuracy is less than 50% you will get nothing for this set.

On the TA set, we hope you can get at least 55% accuracy, any result better than 55% will get all credit for this set. Results between 30% and 55% will get 50% credit for this set, but if your accuracy is less than 30% you will get nothing for this set.

Notice: 90% and 55% are not a hard goal, if your implementation is correct, you will find little extra work is needed to achieve the accuracy. In other words, if you cannot get close to the goal, there is a high possibility that your code has some problems. Directly loading pretrained weights of the Neural Network is prohibited.

As the TA set is newly created, we provide 10 examples as below.

Note those samples are just for illustrative purposes.

7. Academic Honesty and Integrity

All homework material is checked vigorously for dishonesty using several methods. All detected violations of academic honesty are forwarded to the Office of Student Judicial Affairs. To be safe, you are urged to err on the side of caution. Do not copy work from another student or off the web. Keep in mind that sanctions for dishonesty are reflected in your permanent record and can negatively impact your future success. As a general guide:

Do not copy code or written material from another student. Even single lines of code should not be copied.

Do not collaborate on this assignment. The assignment is to be solved individually.

Do not copy code off the web. This is easier to detect than you may think.

Do not share any custom test cases you may create to check your program’s behavior in more complex scenarios than the simplistic ones that are given.

Do not copy code from past students. We keep copies of past work to check for this. Even though this project differs from those of previous years, do not try to copy from homeworks of previous years.

Do not ask on Piazza how to implement some function for this homework, or how to calculate something needed for this homework.

Do not post code on Piazza asking whether or not it is correct. This is a violation of academic integrity because it biases other students who may read your post.

Do not post test cases on Piazza asking for what the correct solution should be.

Do ask the professor or TAs if you are unsure about whether certain actions constitute dishonesty. It is better to be safe than sorry.

DO NOT USE ANY existing machine learning library such as Tensorflow and Pytorch. Violation may cause a penalty to your credit.

Artificial Intelligence Homework 3
$24.99 $18.99