Self Supervised Visual Learning

Self-supervised visual learning trains an encoder from images without manual task labels. It is usually used to produce transferable feature extraction backbones for image classification, content-based image retrieval, segmentation, detection, and low-label domains such as medical image analysis.

This page is about representation learning, not image generation. It still matters for generative systems: text-to-image models such as Stable Diffusion depend on visual and vision-language representation learning through autoencoders, image-text encoders, and perceptual feature spaces.

Contrastive, masked, and predictive objectives

Contrastive methods make two augmented views of the same image close and other images far apart. For normalized embeddings and positive index , the NT-Xent loss is

The data augmentation policy is part of the objective: it defines which changes should preserve identity.

Other self-supervised vision methods avoid explicit negatives or reconstruct masked content:

where is the set of masked image patches. JEPA-style image methods predict target-region features instead of pixels:

The difference matters. Contrastive learning defines invariances through augmentation. Masked autoencoding defines a reconstruction problem over missing patches. Self-distillation and JEPA-style methods use target networks to avoid needing labels or explicit negative pairs.

Method Families

familyrepresentative ideawhat it is good formain risk
Contrastive learningPull augmented views together and push other images apart.Retrieval, nearest-neighbor search, general image embeddings.Augmentation shortcuts and dependence on negative-pair construction.
Non-contrastive self-distillationPredict a stop-gradient or momentum target representation from another view.Strong backbones without explicit negatives.Collapse unless the architecture and normalization prevent trivial constant embeddings.
Masked autoencodingHide image patches and reconstruct pixels or patch targets.Scalable vision transformers and low-label transfer.Reconstruction may overemphasize texture if the task is too local.
Self-supervised ViT featuresUse self-distillation or masking with transformer patch tokens.Dense object-like features, segmentation transfer, k-nearest-neighbor classification.Patch size, crop policy, and dataset bias strongly shape the representation.
Vision-language contrastive pretrainingMatch image embeddings to paired text embeddings.Zero-shot classification, image-text retrieval, promptable visual concepts.Noisy captions and web data bias can become model behavior.
JEPA-style latent predictionPredict target-region representations from context regions.Semantic image features without pixel reconstruction or hand-crafted negative pairs.The target feature space and masking strategy define what can be learned.

Use self-supervised pretraining when labels are scarce, categories change, or downstream tasks share visual structure. Use supervised pretraining when the target label space is stable and labeled data is abundant. In practice, many visual foundation models mix these ideas with weak labels, captions, filtering, or synthetic data.

Worked example

This snippet computes a contrastive similarity matrix for augmented views and the resulting NT-Xent loss.

import torch
import torch.nn.functional as F
 
z = torch.tensor([[1.,0.],[.9,.1],[0.,1.],[.1,.9]])
z = F.normalize(z, dim=1)
sim = z @ z.T
tau = .2
logits = sim / tau
pos = torch.tensor([1,0,3,2])
loss = F.cross_entropy(logits - torch.eye(4) * 1e9, pos)
print("similarity_matrix")
print(torch.round(sim, decimals=3).numpy())
print("nt_xent_loss", round(float(loss), 3))

Observed output:

similarity_matrix
[[1.    0.994 0.    0.11 ]
 [0.994 1.    0.11  0.22 ]
 [0.    0.11  1.    0.994]
 [0.11  0.22  0.994 1.   ]]
nt_xent_loss 0.026

The intended positive pairs have cosine similarity 0.994, while mismatched pairs are much lower, between 0.0 and 0.22. Because the positives already dominate the softmax at , the NT-Xent loss is only 0.026.

Caveats

Pretraining loss is not a deployment metric. A representation can group images by scanner, watermark, crop style, or background. Evaluate frozen probes, fine-tuning, and nearest neighbors across domain shift slices before trusting the encoder.

References