Quiz Space

Deep Learning · End Term · 13 Apr 2025 · January 2025 term

Question 24: For a multi-class classification problem with five class…

Question 24

+1 markOne correct option

For a multi-class classification problem with five classes, consider the following CNN architecture:

LayerSpecsVolume
InputNA64×64×364 \times 64 \times 3
Convolution-1F=3,S=1,P=1,K=6F = 3, S = 1, P = 1, K = 6V1V_1
MaxPooling-1F=2,S=2,P=0F = 2, S = 2, P = 0V2V_2
Convolution-2F=3,S=1,P=1,K=12F = 3, S = 1, P = 1, K = 12V3V_3
MaxPooling-2F=2,S=2,P=0F = 2, S = 2, P = 0V4V_4
Convolution-3F=1,S=1,P=0,K=8F = 1, S = 1, P = 0, K = 8V5V_5
FC-120NA
Output5NA
  • The first column is the type of layer.
  • The second column is the layer specification. If it is an FC layer, it is the number of neurons. If it is a convolution or pooling layer, it is the information pertaining to kernels. NA refers to “Not Applicable” wherever this information is not needed. In a convolutional/pooling layer, KK is the number of filters, FF is the spatial dimension of the filter, PP is the padding and SS is the stride.
  • The third column corresponds to the activation volumes output by the non-FC layers. For example, the input layer passes on a volume of size 64×64×364 \times 64 \times 3 to “Convolution-1”, which outputs a volume of size V1V_1. Each volume is of the type W×H×DW \times H \times D.

Note that V5V_5 is flattened before it is passed on to “FC-1”. Output layer is also considered as an FC layer with a softmax activation function.

Based on the above data, answer the given subquestions.

Which of the following corresponds to V4, the activation volume output by the layer “MaxPooling- 2”?

  1. A

    16 × 16 × 12

  2. B

    8 × 8 × 12

  3. C

    32 × 32 × 8

  4. D

    16 × 16 × 6

Show answer

Correct answer

  • A

    16 × 16 × 12

Question 24 of 31 in the IIT Madras BS Deep Learning (Deep Learning) End Term paper sat on 13 Apr 2025, in the January 2025 term (IIT M DIPLOMA AN EXAM QDD3 13 Apr 2025). It carries 1 mark.

More questions from this paper

  1. Q1A neural network is being trained for a regression problem in which the target is in the interval (−1, 1). Which of the…
  2. Q2In the transformer architecture, which of the following are true regarding cross attention in the decoder?
  3. Q3Consider applying dropout to a hidden layer with p = 0.5. Which of the following are true?
  4. Q4Consider the following plot of error versus model complexity. Models of varying complexity are evaluated on the same tr…
  5. Q5Consider the following tasks which can be solved using an encoder-decoder architecture. Which of these tasks has a deco…
  6. Q6The input volume to a convolutional layer is 100×100×5. If ten kernels, each of size 9 × 9, with unit stride are applie…
  7. Q7Find the value of x at which the tower attains its maximum value.
  8. Q8Find the maximum value that the tower attains.
  9. Q9In any given head, what is the dimension of the WQ matrix?
  10. Q10In any given head, what is the dimension of the query-key product matrix?
  11. Q11Consider the multi-head self-attention mechanism in the encoder of a transformer with 8 heads. The word embedding dimen…
  12. Q12Find the value y at the end of the forward pass.
  13. Q13Based on the above data, answer the given subquestions.
  14. Q14Based on the above data, answer the given subquestions.
  15. Q15Based on the above data, answer the given subquestions.
  16. Q16Based on the above data, answer the given subquestions.
  17. Q17Which of the following is true?
  18. Q18Based on the above data, answer the given subquestions. Find a.
  19. Q19Based on the above data, answer the given subquestions. Find b.
  20. Q20Based on the above data, answer the given subquestions. Find c.
  21. Q21Consider the CBOW model for learning word embeddings with embedding dimension two. The window size is one, that is, we …
  22. Q22Consider the CBOW model for learning word embeddings with embedding dimension two. The window size is one, that is, we …
  23. Q23For a multi-class classification problem with five classes, consider the following CNN architecture: | Layer | Specs | …
  24. Q25For a multi-class classification problem with five classes, consider the following CNN architecture: | Layer | Specs | …
  25. Q26With a total of 7 time steps (T = 7), what is the total count of parameters (including bias) within the network?
  26. Q27Based on the above data, answer the given subquestions.
  27. Q28If all the parameters (including bias) in the network are initialized to zero, what will be the total loss after 10 tim…
  28. Q29Which of these is the correct ordering among the learning rates?
  29. Q30Based on the above data, answer the given subquestions.
  30. Q31Based on the above data, answer the given subquestions.