Papers › Multimodal Masked Autoencoders Learn Transferable Representations

Multimodal Masked Autoencoders Learn Transferable Representations

27 May 2022arXiv:2205.14204archive 2025-07-28

Xinyang Geng, Hao liu, Lisa Lee, Dale Schuurmans, Sergey Levine, Pieter Abbeel

Building scalable models to learn from diverse, multimodal data remains an open challenge. For vision-language data, the dominant approaches are based on contrastive learning objectives that train a separate encoder for each modality. While effective, contrastive learning approaches introduce sampling bias depending on the data augmentations used, which can degrade performance on downstream tasks. Moreover, these methods are limited to paired image-text data, and cannot leverage widely-available unpaired data. In this paper, we investigate whether a large multimodal model trained purely via masked token prediction, without using modality-specific encoders or contrastive learning, can learn transferable representations for downstream tasks. We propose a simple and scalable network architecture, the Multimodal Masked Autoencoder (M3AE), which learns a unified encoder for both vision and language data via masked token prediction. We provide an empirical study of M3AE trained on a large-scale image-text dataset, and find that M3AE is able to learn generalizable representations that transfer well to downstream tasks. Surprisingly, we find that M3AE benefits from a higher text mask ratio (50-90%), in contrast to BERT whose standard masking ratio is 15%, due to the joint training of two data modalities. We also provide qualitative analysis showing that the learned representation incorporates meaningful information from both image and language. Lastly, we demonstrate the scalability of M3AE with larger model size and training time, and its flexibility to train on both paired image-text data as well as unpaired data.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2205.14204")

Code

Syntology Ran 3 of 12 code samples harvested from 2 repositories linked to this paper; 9 have no recorded run. Of those that ran: 3 ran · our draft was wrong.

By repository: official repository: 3 samples from 1 repository, 3 ran; community (archive-listed): 9 samples from 1 repository, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

young-geng/m3ae_public officialmentioned in papermentioned on GitHubjax report
snoop2head/ehrxqa-2024 mentioned on GitHubjaxApache-2.0 report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

12 samples harvested; 3 ran; 0 honoured the contract we drafted; 9 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

3ran · our draft was wrong
9unverified

Licence: 0 of the 12 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from 2 repositories linked to this paper, official or community; each sample names its own and says which. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

create_train_step young-geng/m3ae_public/m3ae/m3ae_main.py official repository ran · our draft was wrong Apache-2.0 (permissive) · 4cdd517dc71ee948 · report
create_train_step young-geng/m3ae_public/m3ae/finetune_main.py official repository ran · our draft was wrong Apache-2.0 (permissive) · cd404f2cdd3539c0 · report
create_train_step young-geng/m3ae_public/m3ae/linear_main.py official repository ran · our draft was wrong Apache-2.0 (permissive) · c59ac510d14ebe8e · report
auto_augment_factory KAIST-AILab/MaskedAutoencoder-Jax/src/dataset.py community (archive-listed) unverified Apache-2.0 (permissive) · a0ce0e70c5f4edc1 · report
collate_and_shuffle KAIST-AILab/MaskedAutoencoder-Jax/src/dataset.py community (archive-listed) unverified Apache-2.0 (permissive) · 0c35ede9700b8e33 · report
create_transforms KAIST-AILab/MaskedAutoencoder-Jax/src/dataset.py community (archive-listed) unverified Apache-2.0 (permissive) · a1d3a7c11f3b5554 · report
fixed_sincos2d_embeddings KAIST-AILab/MaskedAutoencoder-Jax/src/utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 122956528203dc19 · report
get_layer_index_fn KAIST-AILab/MaskedAutoencoder-Jax/src/utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 81e81f440f6126dd · report
mask_intersection KAIST-AILab/MaskedAutoencoder-Jax/src/utils_mae.py community (archive-listed) unverified Apache-2.0 (permissive) · cd63725ed150c8be · report
mask_not KAIST-AILab/MaskedAutoencoder-Jax/src/utils_mae.py community (archive-listed) unverified Apache-2.0 (permissive) · e0f860b8706ea27b · report
mask_union KAIST-AILab/MaskedAutoencoder-Jax/src/utils_mae.py community (archive-listed) unverified Apache-2.0 (permissive) · d049b3e2054cb151 · report
modified_lamb KAIST-AILab/MaskedAutoencoder-Jax/src/utils.py community (archive-listed) unverified Apache-2.0 (permissive) · 75ee7d495c2657a4 · report

Tasks

Contrastive Learning

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Methods

AdamAttentionAttention DropoutBERTContrastive LearningDense ConnectionsDropoutLayer NormalizationLinear LayerLinear Warmup With Linear DecayMulti-Head AttentionResidual ConnectionSoftmaxWeight DecayWordPiece

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections