Self-Supervised Learning

Self-supervised learning became central when researchers realized that labels could be generated from the data itself. Text supplies missing-token and next-token targets; images supply transformed views or masked patches; video supplies temporal prediction. This history page complements the modeling page on self-supervised learning.

Verified chronology

YearMilestoneWhy it followed
2013Mikolov, Chen, Corrado, and Dean introduced efficient word-vector training methods.Predicting nearby words from raw text made large-scale representation learning practical without manual labels.
2018Devlin, Chang, Lee, and Toutanova introduced BERT with masked language modeling.Bidirectional pretraining turned unlabeled text into task-transferable contextual representations.
2020Chen, Kornblith, Norouzi, and Hinton introduced SimCLR for contrastive visual representation learning.Augmentations defined positive pairs, making contrastive learning a scalable vision pretext task.
2020Grill and coauthors introduced BYOL, a non-contrastive self-supervised method.The field tested whether useful invariances could be learned without explicit negative pairs.
2021He, Chen, Xie, Li, Dollar, and Girshick introduced masked autoencoders for scalable vision learning.Masked reconstruction made self-supervised visual learning align naturally with ViT-style patch representations.

Historical mechanism

The mechanism is generated supervision. Instead of asking a human for a label, the training task hides, corrupts, contrasts, or predicts part of the input. The model is forced to learn a representation that preserves information useful for solving that pretext task, then downstream training tests whether the representation transfers.

The causal sequence matters. Word vectors proved that raw corpora could teach semantic structure. BERT showed that contextual self-supervision could dominate NLP benchmarks. SimCLR and BYOL showed that visual invariance could be learned from augmentations. Masked autoencoders showed that prediction over image patches could scale with transformers. Video methods extended the same principle to motion and temporal consistency, which is why self-supervised video representation learning is a distinct branch rather than a simple image copy.

The caveat is objective mismatch. A pretext task preserves what it needs and may discard what a downstream task needs. Self-supervision reduces labeling dependence, but it increases dependence on data mixture, augmentations, masking policy, architecture, and evaluation design.

References