Questions: Transfer Learning in Neural Networks

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A researcher has 400 labeled chest X-rays and wants to classify pneumonia. She loads a CNN pretrained on ImageNet and plans to retrain the model. Which strategy is most likely to achieve the best performance?

ARetrain all layers from scratch using the pretrained weights as starting values, with a high learning rate
BFreeze all layers except the final classification head, since the data are too scarce to safely update any features
CFreeze the early layers (generic feature detectors) and fine-tune the later layers plus a new classification head with a low learning rate
DDiscard the pretrained weights and train from random initialization to avoid domain mismatch
Question 2 Multiple Choice

Transfer learning from an ImageNet-pretrained CNN to a satellite imagery task is expected to be less effective than transfer to a natural-photo task. The best explanation is that:

AImageNet models have too many parameters to be useful for any other task
BSatellite images have different pixel value distributions, which confuses the pretrained softmax classifier
CThe later layers of an ImageNet model encode features (dog faces, bird shapes) that are irrelevant to overhead views, requiring more extensive fine-tuning
DTransfer learning only works when source and target tasks share the same number of classes
Question 3 True / False

Transfer learning is primarily useful when the target task has the same output classes as the source task.

TTrue
FFalse
Question 4 True / False

Early convolutional layers of a network trained on ImageNet learn generic features like edge detectors and color gradients that are broadly useful across visual tasks.

TTrue
FFalse
Question 5 Short Answer

Why does transfer learning from a large source task typically outperform training from scratch on a small target dataset, and what determines how many layers should be frozen versus fine-tuned?

Think about your answer, then reveal below.