forked from DimplesL/Deeplearning.ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathC4W2_Quiz_Deep convolutional models.txt
48 lines (29 loc) · 2.65 KB
/
C4W2_Quiz_Deep convolutional models.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Quiz Week 2
Deep convolutional models
1. Which of the following do you typically see as you move to deeper layers in a ConvNet?
nH and nW decrease, while nC increases
2. Which of the following do you typically see in a ConvNet? (Check all that apply.)
Multiple CONV layers followed by a POOL layer
FC layers in the last few layers
3. In order to be able to build very deep networks, we usually only use pooling layers to downsize the height/width of the activation volumes while convolutions are used with “valid” padding. Otherwise, we would downsize the input of the model too quickly.
True
4. Training a deeper network (for example, adding additional layers to the network) allows the network to fit more complex functions and thus almost always results in lower training error. For this question, assume we’re referring to “plain” networks.
True
5. The following equation captures the computation in a ResNet block. What goes into the two blanks above?
a[l+2]=g(W[l+2]g(W[l+1]a[l]+b[l+1])+bl+2+_______ )+_______
a[l] and 0, respectively
6. Which ones of the following statements on Residual Networks are true? (Check all that apply.)
The skip-connection makes it easy for the network to learn an identity mapping between the input and the output within the ResNet block.
Using a skip-connection helps the gradient to backpropagate and thus helps you to train deeper networks
7. Suppose you have an input volume of dimension 64x64x16. How many parameters would a single 1x1 convolutional filter have (including the bias)?
17
8. Suppose you have an input volume of dimension nH x nW x nC. Which of the following statements you agree with? (Assume that “1x1 convolutional layer” below always uses a stride of 1 and no padding.)
You can use a 1x1 convolutional layer to reduce nC but not nH, nW.
You can use a pooling layer to reduce nH, nW, but not nC.
9. Which ones of the following statements on Inception Networks are true? (Check all that apply.)
Making an inception network deeper (by stacking more inception blocks together) should not hurt training set performance.
Inception blocks usually use 1x1 convolutions to reduce the input data volume’s size before applying 3x3 and 5x5 convolutions.
A single inception block allows the network to use a combination of 1x1, 3x3, 5x5 convolutions and pooling.
10. Which of the following are common reasons for using open-source implementations of ConvNets (both the model and/or weights)? Check all that apply.
It is a convenient way to get working an implementation of a complex ConvNet architecture.
Parameters trained for one computer vision task are often useful as pretraining for other computer vision tasks.