Questions: Meta-Learning (Learning to Learn)

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

During MAML meta-training, what does the outer loop optimize?

AThe model's accuracy on the support set of each training task
BThe initialization such that a few inner-loop gradient steps yield strong query-set performance on new tasks
CThe learning rate used in the inner-loop adaptation steps
DThe average loss across all support sets without any inner-loop adaptation
Question 2 Multiple Choice

A team pre-trains a ResNet on ImageNet and then fine-tunes it on a medical imaging dataset. A colleague claims this is equivalent to MAML. What is the key difference?

AThere is no meaningful difference — both use a pre-trained initialization that is then adapted
BFine-tuning adapts to one fixed target domain; MAML explicitly optimizes the initialization so that adaptation to *any* new task is fast and effective
CFine-tuning uses support and query sets, while MAML uses a conventional train/test split
DMAML requires far less data than fine-tuning because it only needs a support set of a few examples per task
Question 3 True / False

A MAML-trained model should already achieve high accuracy on a brand-new task before any inner-loop adaptation steps are taken.

TTrue
FFalse
Question 4 True / False

In meta-learning, both the inner loop and the outer loop are evaluated on data that the model has never seen during meta-training — this is what makes generalization possible.

TTrue
FFalse
Question 5 Short Answer

What is MAML optimizing for, and how does this differ from what standard gradient descent optimizes when training a classifier?

Think about your answer, then reveal below.