Skip to content

Commit fe9d0cb

Browse files
committed
Update text
1 parent 4352dce commit fe9d0cb

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

assignments/2021/assignment2.md

+12-13
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Starter code containing Colab notebooks can be [downloaded here]({{site.hw_2_col
1111

1212
- [Setup](#setup)
1313
- [Goals](#goals)
14-
- [Q1: Fully-connected Neural Network](#q1-fully-connected-neural-network)
14+
- [Q1: Multi-Layer Fully Connected Neural Networks](#q1-fully-connected-neural-network)
1515
- [Q2: Batch Normalization](#q2-batch-normalization)
1616
- [Q3: Dropout](#q3-dropout)
17-
- [Q4: Convolutional Networks](#q4-convolutional-networks)
18-
- [Q5: PyTorch / TensorFlow on CIFAR-10](#q5-pytorch--tensorflow-on-cifar-10)
17+
- [Q4: Convolutional Neural Networks](#q4-convolutional-networks)
18+
- [Q5: PyTorch/TensorFlow on CIFAR-10](#q5-pytorch--tensorflow-on-cifar-10)
1919
- [Submitting your work](#submitting-your-work)
2020

2121
### Setup
@@ -42,28 +42,27 @@ In this assignment you will practice writing backpropagation code, and training
4242
- Understand the architecture of **Convolutional Neural Networks** and get practice with training them.
4343
- Gain experience with a major deep learning framework, such as **TensorFlow** or **PyTorch**.
4444

45-
### Q1: Fully-connected Neural Network
45+
### Q1: Multi-Layer Fully Connected Neural Networks
4646

47-
The notebook `FullyConnectedNets.ipynb` will introduce you to our
48-
modular layer design, and then use those layers to implement fully-connected
47+
The notebook `FullyConnectedNets.ipynb` will have you implement fully connected
4948
networks of arbitrary depth. To optimize these models you will implement several
5049
popular update rules.
5150

5251
### Q2: Batch Normalization
5352

54-
In notebook `BatchNormalization.ipynb` you will implement batch normalization, and use it to train deep fully-connected networks.
53+
In notebook `BatchNormalization.ipynb` you will implement batch normalization, and use it to train deep fully connected networks.
5554

5655
### Q3: Dropout
5756

58-
The notebook `Dropout.ipynb` will help you implement Dropout and explore its effects on model generalization.
57+
The notebook `Dropout.ipynb` will help you implement dropout and explore its effects on model generalization.
5958

60-
### Q4: Convolutional Networks
59+
### Q4: Convolutional Neural Networks
6160

62-
In the IPython Notebook `ConvolutionalNetworks.ipynb` you will implement several new layers that are commonly used in convolutional networks.
61+
In the notebook `ConvolutionalNetworks.ipynb` you will implement several new layers that are commonly used in convolutional networks.
6362

64-
### Q5: PyTorch / TensorFlow on CIFAR-10
63+
### Q5: PyTorch/TensorFlow on CIFAR-10
6564

66-
For this last part, you will be working in either TensorFlow or PyTorch, two popular and powerful deep learning frameworks. **You only need to complete ONE of these two notebooks.** You do NOT need to do both, and we will _not_ be awarding extra credit to those who do.
65+
For this last part, you will be working in either TensorFlow or PyTorch, two popular and powerful deep learning frameworks. **You only need to complete ONE of these two notebooks.** While you are welcome to explore both for your own learning, there will be no extra credit.
6766

6867
Open up either `PyTorch.ipynb` or `TensorFlow.ipynb`. There, you will learn how the framework works, culminating in training a convolutional network of your own design on CIFAR-10 to get the best performance you can.
6968

@@ -82,7 +81,7 @@ This notebook/script will:
8281

8382
If your submission for this step was successful, you should see the following display message:
8483

85-
`### Done! Please submit a1.zip and the pdfs to Gradescope. ###`
84+
`### Done! Please submit a2.zip and the pdfs to Gradescope. ###`
8685

8786
**2.** Submit the PDF and the zip file to [Gradescope](https://www.gradescope.com/courses/257661).
8887

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
<div class="materials-wrap">
1616
<div class="module-header">Spring 2021 Assignments</div>
1717
<div class="materials-item">
18-
<a href="assignments2021/assignment1/">Assignment #1: Image Classification, kNN, SVM, Softmax, Fully-Connected Neural Network</a>
18+
<a href="assignments2021/assignment1/">Assignment #1: Image Classification, kNN, SVM, Softmax, Fully Connected Neural Network</a>
1919
</div>
2020
<div class="materials-item">
21-
<a href="assignments2021/assignment2/">Assignment #2: Fully-Connected and Convolutional Nets, Batch Normalization, Dropout</a>
21+
<a href="assignments2021/assignment2/">Assignment #2: Fully Connected and Convolutional Nets, Batch Normalization, Dropout, Frameworks</a>
2222
</div>
2323
</div>
2424
<!--
2525
<div class="materials-item">
2626
<a href="assignments2019/assignment2/">
27-
Assignment #2: Fully-Connected Nets, Batch Normalization, Dropout,
27+
Assignment #2: Fully Connected Nets, Batch Normalization, Dropout,
2828
Convolutional Nets
2929
</a>
3030
</div>

0 commit comments

Comments
 (0)