Quiz Space

Deep Learning Practice · End Term · 10 May 2026 · January 2026 term

Question 22: In the GoogLeNet (Inception v1) architecture, 1 × 1 conv…

Question 22

+5 marksOne correct option

In the GoogLeNet (Inception v1) architecture, 1 × 1 convolutions (bottleneck layers) are applied before larger 3 × 3 and 5 × 5 convolutions. What is the primary motivation for including these 1 × 1 filters within an Inception module?

  1. A

    Transposed Convolution.

  2. B

    To reduce the dimensionality (depth) of feature maps to manage computational complexity.

  3. C

    To replace the need for skip connections and solve the degradation problem.

  4. D

    To strictly enforce a mean of 0 and variance of 1 across the channel dimension.

Show answer

Correct answer

  • B

    To reduce the dimensionality (depth) of feature maps to manage computational complexity.

Question 22 of 22 in the IIT Madras BS Deep Learning Practice (Deep Learning Practice) End Term paper sat on 10 May 2026, in the January 2026 term (Deep Learning Practice 06 May 26). It carries 5 marks.

More questions from this paper

  1. Q1Based on the YAML configuration file, what is the total number of object classes the model is trained to detect?
  2. Q2What is the x-coordinate (in pixels) of the center of the bounding box?
  3. Q3What is the x-coordinate (in pixels) of the top-left corner of the bounding box?
  4. Q4Consider a convolutional neural network with an input image of size 84 × 84 × 3. The architecture consists of the follo…
  5. Q5A bottleneck layer in a ResNet receives an input feature map of dimensions 14×14×1024. We apply a 1×1 convolution layer…
  6. Q6A modified YOLO-style architecture divides an image into a 13 × 13 grid (S = 13). If the model is designed to predict B…
  7. Q7In the VGG16 architecture, consider the second convolutional layer of the first block. It takes an input with 64 channe…
  8. Q8When fine-tuning a large vision model (e.g., a pre-trained ResNet or Vision Transformer) for a specific competition dat…
  9. Q9When training a deep learning model for a vision competition (such as a ”Cat vs Dog” classifier or a YOLO detector), wh…
  10. Q10Consider the following Python code snippet using the Ultralytics YOLOv8 API:\ from ultralytics import YOLO model = YOLO…
  11. Q11Which of the following loss components are typically used in SRGAN (Super-Resolution GAN) to achieve photo-realistic re…
  12. Q12Regarding the U-Net architecture, which is widely used for tasks like medical image segmentation and can be adapted for…
  13. Q13Consider the following code:\ model = torchvision.models.detection.fasterrcnn_resnet50_fpn(pretrained=True) images = [t…
  14. Q14Which of the following statements correctly describe the characteristics and motivations of the Inception (GoogLeNet) a…
  15. Q15In the context of Convolutional Neural Networks (CNNs), what is the primary mechanism that allows the network to handle…
  16. Q16The first layer of the VGG16 model is a Conv2d with kernel = 3, stride = 1, padding = 1.\ Consider the following Python…
  17. Q17In the ResNet (Residual Network) architecture, 1 × 1 convolutions are frequently used in the ”bottleneck” building bloc…
  18. Q18In the YOLO (You Only Look Once) framework, if multiple bounding boxes are predicted by a single grid cell for the same…
  19. Q19Consider the following code snippet using a YOLO-based object detection model:\ from ultralytics import YOLO\ model = Y…
  20. Q20In the SRResNet and SRGAN architectures for image super-resolution, which specialized layer is used to upsample the fea…
  21. Q21In the Fast R-CNN architecture, which component is responsible for extracting a fixed-size feature vector from a shared…