Questions: Contrastive Learning

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

In SimCLR, the composition of multiple data augmentations (e.g., random cropping plus color jitter) matters far more than any single augmentation applied alone. What is the best explanation for this?

AMultiple augmentations increase the number of positive pairs per batch, directly improving optimization speed
BComposing augmentations creates views that differ on many dimensions simultaneously, forcing the model to learn invariances to all of them at once
CIndividual augmentations don't change pixel statistics enough for the contrastive loss to compute meaningful gradients
DMultiple augmentations reduce data leakage between positive and negative pairs in the batch
Question 2 Multiple Choice

A researcher trains SimCLR with a batch size of 64 instead of the original 4096. They observe much worse downstream performance. What is the most direct cause?

ASmaller batches cause gradient instability in the projection head, corrupting the representation
BWith only 64 images per batch, each anchor has just 126 negatives — a weak discrimination signal compared to the 8190 negatives available at batch size 4096
CSmall batches make augmentation composition less effective because fewer augmentation combinations are sampled
DThe InfoNCE loss is undefined when batch size falls below 128
Question 3 True / False

Contrastive learning trains the model to map two augmented views of the same image to nearby points in representation space, and this implicitly teaches the network which features are semantically invariant.

TTrue
FFalse
Question 4 True / False

BYOL and SimSiam demonstrate that explicit negative pairs are essential to prevent representational collapse in contrastive learning.

TTrue
FFalse
Question 5 Short Answer

Why does the choice of data augmentation strategy define what contrastive learning 'means' semantically, rather than being a mere implementation detail?

Think about your answer, then reveal below.