Setup
Get the code as a zip file here:
/courses/1453965/files/69641876/download?verifier=p8blcPSnwpV9A6YxqYNz2KKJVOFBDpRu7K5hPimW
You will need a unix shell for the command scripts. If you're on windows, that means either cygwin Links to an external site. or a Linux VM such as VirtualBox Links to an external site.. If you;re not already a cygwin user, you will probably find it easier to set up Virtual Box. That will also give you a standard Python distribution.
As for the dependencies:
[Option 1] Use Anaconda: The preferred approach for installing all the assignment dependencies is to use Anaconda Links to an external site., which is a Python distribution that includes many of the most popular Python packages for science, math, engineering and data analysis. Once you install it you can skip all mentions of requirements and you’re ready to go directly to working on the assignment.
[Option 2] Manual install, virtual environment: If you’d like to (instead of Anaconda) go with a more manual and risky installation route you will likely want to create a virtual environment Links to an external site. for the project. If you choose not to use a virtual environment, it is up to you to make sure that all dependencies for the code are installed globally on your machine. To set up a virtual environment, run the following:
cd assignment2
sudo pip install virtualenv # This may already be installed
virtualenv .env # Create a virtual environment
source .env/bin/activate # Activate the virtual environment
pip install -r requirements.txt # Install dependencies
# Work on the assignment for a while ...
deactivate # Exit the virtual environment
Download data: Once you have the starter code, you will need to download the CIFAR-10 dataset. Run the following from the assignment2
directory:
cd cs294_129/datasets
./get_datasets.sh
Compile the Cython extension: Convolutional Neural Networks require a very efficient implementation. We have implemented the functionality using Cython
Links to an external site.; you will need to compile the Cython extension before you can run the code. From the cs294_129
directory, run the following command:
python setup.py build_ext --inplace
Start IPython: After you have the CIFAR-10 data, you should start the IPython notebook server from the assignment2
directory. If you are unfamiliar with IPython, you should read our IPython tutorial
Links to an external site..
NOTE: If you are working in a virtual environment on OSX, you may encounter errors with matplotlib due to the issues described here
Links to an external site.. You can work around this issue by starting the IPython server using the start_ipython_osx.sh
script from the assignment2
directory; the script assumes that your virtual environment is named .env
.
Submitting your work:
Once you are done working run the collectSubmission.sh
script; this will produce a file called assignment2.zip
. Submit this file at the end of this assignment.
Q1: Fully-connected Neural Network (30 points)
The IPython notebook FullyConnectedNets.ipynb
will introduce you to our modular layer design, and then use those layers to implement fully-connected networks of arbitrary depth. To optimize these models you will implement several popular update rules.
Q2: Batch Normalization (30 points)
In the IPython notebook BatchNormalization.ipynb
you will implement batch normalization, and use it to train deep fully-connected networks.
Q3: Dropout (10 points)
The IPython notebook Dropout.ipynb
will help you implement Dropout and explore its effects on model generalization.
Q4: ConvNet on CIFAR-10 (30 points)
In the IPython Notebook ConvolutionalNetworks.ipynb
you will implement several new layers that are commonly used in convolutional networks. You will train a (shallow) convolutional network on CIFAR-10, and it will then be up to you to train the best network that you can.
Q5: Do something extra! (up to +10 points)
In the process of training your network, you should feel free to implement anything that you want to get better performance. You can modify the solver, implement additional layers, use different types of regularization, use an ensemble of models, or anything else that comes to mind. If you implement these or other ideas not covered in the assignment then you will be awarded some bonus points.