Skip to content

Commit e7cbbef

Browse files
committed
add point breakdown for a2
1 parent 4c47b7f commit e7cbbef

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

assignments/2021/assignment2.md

Lines changed: 10 additions & 10 deletions
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: Multi-Layer Fully Connected Neural Networks](#q1-fully-connected-neural-network)
15-
- [Q2: Batch Normalization](#q2-batch-normalization)
16-
- [Q3: Dropout](#q3-dropout)
17-
- [Q4: Convolutional Neural Networks](#q4-convolutional-networks)
18-
- [Q5: PyTorch/TensorFlow on CIFAR-10](#q5-pytorch--tensorflow-on-cifar-10)
14+
- [Q1: Multi-Layer Fully Connected Neural Networks (16%)](#q1-multi-layer-fully-connected-neural-networks-16)
15+
- [Q2: Batch Normalization (34%)](#q2-batch-normalization-34)
16+
- [Q3: Dropout (10%)](#q3-dropout-10)
17+
- [Q4: Convolutional Neural Networks (30%)](#q4-convolutional-neural-networks-30)
18+
- [Q5: PyTorch/TensorFlow on CIFAR-10 (10%)](#q5-pytorchtensorflow-on-cifar-10-10)
1919
- [Submitting your work](#submitting-your-work)
2020

2121
### Setup
@@ -42,25 +42,25 @@ 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: Multi-Layer Fully Connected Neural Networks
45+
### Q1: Multi-Layer Fully Connected Neural Networks (16%)
4646

4747
The notebook `FullyConnectedNets.ipynb` will have you implement fully connected
4848
networks of arbitrary depth. To optimize these models you will implement several
4949
popular update rules.
5050

51-
### Q2: Batch Normalization
51+
### Q2: Batch Normalization (34%)
5252

5353
In notebook `BatchNormalization.ipynb` you will implement batch normalization, and use it to train deep fully connected networks.
5454

55-
### Q3: Dropout
55+
### Q3: Dropout (10%)
5656

5757
The notebook `Dropout.ipynb` will help you implement dropout and explore its effects on model generalization.
5858

59-
### Q4: Convolutional Neural Networks
59+
### Q4: Convolutional Neural Networks (30%)
6060

6161
In the notebook `ConvolutionalNetworks.ipynb` you will implement several new layers that are commonly used in convolutional networks.
6262

63-
### Q5: PyTorch/TensorFlow on CIFAR-10
63+
### Q5: PyTorch/TensorFlow on CIFAR-10 (10%)
6464

6565
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.
6666

0 commit comments

Comments
 (0)