WorksheetsC4M2
Total questions: 10
Worksheet time: 6mins
Which of the following do you typically see as you move to deeper layers in a ConvNet?
Which of the following do you typically see in a ConvNet? (Check all that apply.)
Multiple CONV layers followed by a POOL layer
Multiple POOL layers followed by a CONV layer
FC layers in the last few layers
FC layers in the first few layers
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
FALSE
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
FALSE
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.
The skip-connections compute a complex non-linear function of the input to pass to a deeper layer in the network.
Using a skip-connection helps the gradient to backpropagate and thus helps you to train deeper networks
Suppose you have an input volume of dimension 64x64x16. How many parameters would a single 1x1 convolutional filter have (including the bias)?
17
1
2
4097
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.)
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.
A single inception block allows the network to use a combination of 1x1, 3x3, 5x5 convolutions and pooling.
Inception networks incorporates a variety of network architectures (similar to dropout, which randomly chooses a network architecture on each step) and thus has a similar regularizing effect as dropout.
Inception blocks usually use 1x1 convolutions to reduce the input data volume’s size before applying 3x3 and 5x5 convolutions.
Which of the following are common reasons for using open-source implementations of ConvNets (both the model and/or weights)? Check all that apply.
The same techniques for winning computer vision competitions, such as using multiple crops at test time, are widely used in practical deployments (or production system deployments) of ConvNets.
A model trained for one computer vision task can usually be used to perform data augmentation even for a different computer vision task.
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.
