Masked autoencoders make label-free pretraining scalable
Self-supervised representation learningContrastive methods had shown self-supervision could rival supervised pretraining, but they leaned on carefully tuned augmentations and large batches of negatives. The open question was whether a simple, scalable reconstruction objective — like masked-language modeling in NLP — could work for images, where pixels are redundant and a low mask ratio makes the task trivial.
He et al.'s MAE masks a high fraction of patches (~75%), passes only the visible 25% through a ViT encoder, and uses a lightweight decoder to reconstruct the missing patches' pixels with an MSE loss. The aggressive masking makes the task non-trivial and, because the encoder ignores masked patches, cuts pretraining compute several-fold.
A ViT-Huge pretrained with MAE and then fine-tuned reached 87.8% top-1 accuracy on ImageNet-1K using only ImageNet data, surpassing supervised-from-scratch training, while pretraining ran roughly 3× faster than processing full images. MAE became a default scalable recipe for vision pretraining and a template for masked modeling beyond images.
Source: Masked Autoencoders Are Scalable Vision Learners — He, K., Chen, X., Xie, S., Li, Y., Dollár, P. and Girshick, R.