






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This is the first homework This is the first homework
Typology: Exams
1 / 11
This page cannot be seen from the preview
Don't miss anything!







s(z), which takes a vector input z and outputs a vector whose ith entry si is
si =
ezi ā k e zk^ (1)
The input vector z to s(Ā·) is sometimes called the ālogitsā, which just means the unscaled output of previous layers. Derive the gradient of s with respect to the logits, i.e. derive ā āsz. Consider re-using your work from PS0.
f (x) =
1 if wT^ x + b ā„ 0 0 if wT^ x + b < 0
That is, find wAND and bAND such that
x 1 x 2 fAND(x) 0 0 0 0 1 0 1 0 0 1 1 1
Also find wOR and bOR such that
x 1 x 2 fOR(x) 0 0 0 0 1 1 1 0 1 1 1 1
x 1 x 2 fXOR(x) 0 0 0 0 1 1 1 0 1 1 1 0
Questions for this paper:
The second paper is again one that questions conventional wisdom and shows that large neural networks can actually fit random labels, that is labels that remain fixed but, for example, have no relationship to what is actually in the image. The paper title is āUnderstanding deep learning requires rethinking generalizationā and can be found here.
Questions for this paper:
Coding: Implement and train a network on
MNIST
Overview
Deep Neural Networks are becoming more and more popular and widely applied to many ML-related domains. In this assignment, you will complete a
simple pipeline of training neural networks to recognize MNIST Handwritten Digits: http://yann.lecun.com/exdb/mnist/. You will implement two neural network architectures along with the code to load data, train and optimize these networks. You will also run different experiments on your model to complete a short report. Be sure to use the report template that we give you and fill in your information on the first page. The main.py contains the main logic of this assignment. You can execute it by invoking the following command where the yaml file contains all the hyper-parameters.
$ python main.py --config configs/<name_of_config_file>.yaml
There are three pre-defined config files under ./configs. Two of them are default hyperparameters for models that you will implement in the assign- ment (Softmax Regression and 2-layer MLP). The correctness of your im- plementation is partially judged by the model performance on these default hyper-parameters; therefore, do NOT modify values in these config files. The third config file, config_exp.yaml, is used for your hyper-parameter tuning experiments (details in Section 5) and you are free to modify values of the hyper-parameters in this file.
The script trains a model with the number of epochs specified in the config file. At the end of each epoch, the script evaluates the model on the validation set. After the training completes, the script finally evaluates the best model on the test data.
Python and dependencies
In this assignment, we will work with Python 3. If you do not have a python distribution installed yet, we recommend installing Anaconda: https://www.ana- conda.com/ (or miniconda) with Python 3. We provide environment.yaml which contains a list of libraries needed to set environment for this as- signment. You can use it to create a copy of conda environment. Refer to the usersā manual: https://docs.conda.io/projects/conda/en/latest/user- guide/tasks/manage-environments.html for more details.
$ conda env create -f environment.yaml
If you already have your own Python development environment, please refer to this file to find necessary libraries, which is used to set the same coding/grading environment.
To avoid the choice of hyper-parameters overfits the training data, it is a common practice to split the training dataset into the actual training data and validation data and perform hyper-parameter tuning based on results on validation data. Additionally, in deep learning, training data is often forwarded to models in batches for faster training time and noise reduction.
In our pipeline, we first load the entire MNIST data into the system, followed by a training/validation split on the training set. We simply use the first 80% of the training set as our training data and use the rest training set as our validation data. We also want to organize our data (training, validation, and test) in batches and use different combination of batches in different epochs for training data. Therefore, your tasks are as follows:
(a) follow the instruction in code to complete load_mnist_trainval in ./utils.py for training/validation split
(b) follow the instruction in code to complete generate_batched_data in ./utils.py to organize data in batches You can test your data loading code by running: $ python -m unittest tests.test_loading
2 Model Implementation
You will now implement two networks from scratch: a simple softmax re- gression and a two-layer multi-layer perceptron (MLP). Definitions of these classes can be found in ./models.
Weights of each model will be randomly initialized upon construction and stored in a weight dictionary. Meanwhile, a corresponding gradient dictio- nary is also created and initialized to zeros. Each model only has one public method called forward, which takes input of batched data and correspond- ing labels and returns the loss and accuracy of the batch. Meanwhile, it computes gradients of all weights of the model (even though the method is called forward!) based on the training batch.
There are a few useful methods defined in ./models/_base_network.py that can be shared by both models. Your first task is to implement them based on instructions in _base_network.py:
(a) Activation Functions. There are two activation functions needed for this assignment: ReLU and Sigmoid. Implement both functions as well as their derivatives in ./models/_base_network.py (i.e, sigmoid, sigmoid_dev, ReLU, and ReLU_dev). Test your methods with:
$ python -m unittest tests.test_activation
(b) Loss Functions. The loss function used in this assignment is Cross Entropy Loss. You will need to implement both Softmax function and the computation of Cross Entropy Loss in ./models/_base_network.py.
$ python -m unittest tests.test_loss
(c) Accuracy. We are also interested in knowing how our model is doing on a given batch of data. Therefore, you may want to implement the compute_accuracy method in ./models/_base_network.py to com- pute the accuracy of given batch.
You will implement the training processes of a simple Softmax Regression and a two-layer MLP in this section. The Softmax Regression is composed by a fully-connected layer followed by a ReLU activation. The two-layer MLP is composed by two fully-connected layers with a Sigmoid Activation in between. Note that the Sofmax Regression model has no bias terms, while the two-layer MLP model does use biases. Also, donāt forget the softmax function before computing your loss!
(a) Implement the forward method in softmax_regression.py as well as two_layer_nn.py. If the mode argument is train, compute gradients of weights and store the gradients in the gradient dictionary. Otherwise, simply return the loss and accuracy. Test:
$ python -m unittest tests.test_network
3 Optimizer
We will use an optimizer to update weights of models. An optimizer is initialized with a specific learning rate and a regularization coefficients. Be- fore updating model weights, the optimizer applies L2 regularization on the
Figure 1: Example plot of learning curves
and report your observations by answering questions in the report template. We provide a default config file config_exp.yaml in ./configs. When tun- ing a specific hyper-parameter (e.g, the learning rate), please leave all other hyper-parameters as-is in the default config file.
(a) You will try out different values of learning rates and report your ob- servations in the report file.
(b) You will try out different values of regularization coefficients and report your observations in the report file.
(c) You will try your best to tune the hyper-parameters for best accuracy.
(d) When tuning for best accuracy, tuning just epochs is not interesting. Tune at least 3 hyper-parameters (not including epochs). You may increase or decrease epochs it does not count as 1 of the 3.
(e) When tuning for best accuracy, the best model should have a marked improvement compared to the default hyper-parameters.
(f) When reporting observations be aware of applying good scientific meth- ods.
6 Deliverables
To submit your code to Gradescope, you will need to submit a zip file con- taining all your codes in structure. For your convenience, we provide a handy script for you.
Simply run
$ bash c o l l e c t _ s u b m i s s i o n. sh
or if running Microsoft Windows 10
C: \ a s s i g n m e n t f o l d e r >c o l l e c t _ s u b m i s s i o n. bat
then upload assignment_ 1 _submission.zip to Gradescope.
You will also need to submit a report summarizing your experimental results and findings as specified in Section 5. Again, we provide a starting template for you and your task is just to answer each question in the template. For whichever questions asking for plots, please include plots from all your ex- periments.
Note: Explanations should offer some intuition on why certain results might have been observed using your knowledge of Machine Learning. When tun- ing hyperparameters, explain the reasoning behind the choices. If you need more than one slide for a question, you are free to create new slides right after the given one.
You will need to export your report in pdf format and submit to Gradescope. You should combine your answers to the theory questions, paper review, and report into one pdf and submit it to the āAssignment 1 Writeupā assignment in Gradescope. When submitting to Gradescope, make sure you se- lect ALL corresponding slides for each question. Failing to do so will result in -1 point for each incorrectly tagged question, with future assignments having a more severe penalty.