REVIEW 2 major objections 5 minor 41 references
Separating representation from token reconstruction lets text encoders scale without losing usable frozen features.
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · grok-4.5
2026-07-11 22:19 UTC pith:E6A6XBJL
load-bearing objection CrossBERT is a clean, well-controlled empirical fix for the frozen-scaling collapse of flat BERT; the bipartite design and CMS are real contributions, and the paper should go to referees. the 2 major comments →
Separating Representation from Reconstruction Enables Scalable Text Encoders
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
As compute scales, flat BERT representations become increasingly unexploitable by frozen linear and kNN probes (and by frozen contrastive adapters) even while reconstruction loss improves; the cause is coupling of representation learning to the token-reconstruction objective, and a bipartite encoder-plus-cross-attention-predictor architecture restores monotonic scaling and superior frozen GLUE and MTEB performance.
What carries the argument
CrossBERT: a bipartite Masked Autoencoder for text in which a deep encoder processes only visible tokens and a lightweight predictor (roughly one-fourth the depth, cross-attention only) reconstructs the complementary masked tokens from the encoder states, insulating the backbone from reconstruction specialization.
Load-bearing premise
That average-pooled last-layer features scored by linear and nearest-neighbor probes, plus a lightweight frozen contrastive pooler, are a fair and sufficient measure of intrinsic representation quality, so the BERT degradation and CrossBERT gains can be blamed mainly on architectural coupling.
What would settle it
Train matched flat BERT and CrossBERT families at the same data-to-model ratios and compute budgets; if frozen linear/kNN GLUE and frozen MTEB scores of BERT continue to rise monotonically (or match CrossBERT) once last-layer pooling and probe hyperparameters are held fixed, the coupling diagnosis fails.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper argues that flat BERT-style MLM couples representation learning to token reconstruction, so that frozen last-layer features become less exploitable by linear/kNN probes and frozen contrastive adapters as compute scales, even while perplexity improves. CrossBERT separates the two via a bipartite design: a full encoder that sees only unmasked tokens and a shallow cross-attention-only predictor that reconstructs the complementary masked view. Complementary Masking Strategy (CMS) at ≥50% masking doubles sample efficiency and raises throughput. Controlled same-corpus, same-tokenizer sweeps (8 BERT + 9 CrossBERT models, fixed 20:1 data-to-model ratio) show monotonic frozen GLUE and MTEB(eng,v2) scaling for CrossBERT and degradation for BERT (Figs. 1, 3–4; Tables 1–3, 8).
Significance. If the scaling results hold, the work supplies a concrete architectural diagnosis and fix for a long-standing encoder stagnation problem, with direct practical value for retrieval, data curation, and frozen-embedding pipelines. Strengths include the controlled multi-scale sweep under fixed data-to-model ratio, layer-wise over-specialization evidence (Table 1), masking/CMS/predictor ablations (Tables 2, 4–7), and the clear frozen-vs-unfrozen gap that is large for BERT and near-zero for CrossBERT. The efficiency gains (1.5–2 imes throughput, 2 imes sample efficiency) are independently useful. The evaluation protocol itself (frozen linear/kNN + frozen contrastive pooler) is a useful contribution for future encoder work.
major comments (2)
- The central attribution of BERT degradation to architectural coupling (flat MLM) rather than probe/pooling choice is load-bearing but only partially stress-tested. Table 1 shows modest last-layer over-specialization (+1.2–1.8 pts from earlier layers), yet the main claims rest on average-pooled last-layer features (§4.1) and a lightweight frozen contrastive pooler (§4.2). A stronger control would report the same frozen MTEB/GLUE curves when (i) probing intermediate layers of large BERTs or (ii) using the same cross-attention pooler architecture on both backbones without warm-start. Without that, residual confounding by probe choice remains possible, though the same probes are applied to both models and the retrieval collapse of BERT is structural.
- §5.3 and Appendix I document training instability and loss spikes for large-scale BERT (and Electra) that are largely absent for CrossBERT. The paper correctly notes that undertraining is unlikely (20:1 ratio), but does not fully separate optimization brittleness from the claimed representation misalignment. A short additional experiment—e.g., the largest BERT re-trained with the same init-std reduction that stabilized CrossBERT 2B, or with Electra-style RTD under identical CMS-free conditions—would strengthen the claim that the frozen-score drop is architectural rather than an optimization artifact.
minor comments (5)
- Figure 1 caption and §5.1 should state explicitly that MTEB(eng,v2) is used for the scaling plots while Table 3 reports MTEB(eng,v1) for literature comparison; the switch is easy to miss.
- Eq. (8) for CrossBERT FLOPs is clear, but the text should note whether the reported FLOPs already include CMS (two complementary views) or are per-view; this affects the 1.5–2 imes throughput claim.
- Table 3 lists ModernBERT/NeoBERT/DeBERTaV3 with much larger data budgets and different finetuning mixtures; a short caveat in the caption would prevent over-reading the absolute MTEB numbers.
- Typos / notation: “unexploitableby” (abstract), “L la y ers” / “Cr oss-A ttn” in Fig. 2, and inconsistent “MTEB(eng, v1/v2)” spacing.
- Appendix J model tables are valuable; adding the exact masking ratio and whether CMS was on for each row would make the sweep fully self-contained.
Circularity Check
No significant circularity: empirical architecture comparison measured on external frozen benchmarks
full rationale
The paper's central claims (BERT frozen-probe degradation with scale under flat MLM; CrossBERT restoring monotonic frozen GLUE/MTEB scaling via bipartite encoder+cross-attention predictor) are established by controlled same-corpus training runs and direct measurement on external benchmarks (GLUE linear/kNN probes, MTEB contrastive frozen/unfrozen). Hyperparameter power laws for BSZ/LR are fitted on small-scale sweeps then applied as training settings; they do not define or force the reported probe scores. Self-citations to the authors' prior OptiBERT work supply only baseline numbers and BERT hyperparameter defaults, not a load-bearing uniqueness or derivation step. Inspiration from external vision MAE papers is architectural, not a smuggled ansatz that makes the frozen-score results true by construction. No equation, definition, or fit reduces the claimed performance gap to its own inputs.
Axiom & Free-Parameter Ledger
free parameters (5)
- predictor depth / width ratio
- masking ratio (CrossBERT 50%, BERT 20%)
- data-to-model ratio 20:1
- BSZ and LR power-law coefficients
- Ridge λ and kNN k / distance
axioms (4)
- domain assumption Frozen linear/kNN probes on average-pooled last-layer features measure intrinsic representation quality relevant to downstream use.
- domain assumption Standard MLM negative log-likelihood on masked tokens is a valid pre-training objective whose only defect is architectural coupling.
- standard math Transformer FLOPs formulas (Eqs. 6–8) correctly capture relative compute of encoder vs. predictor under masking.
- domain assumption DCLM subset + RoBERTa tokenizer is a representative pre-training distribution for the claimed scaling trends.
invented entities (2)
-
CrossBERT bipartite architecture (encoder + cross-attention-only predictor)
no independent evidence
-
Complementary Masking Strategy (CMS)
no independent evidence
read the original abstract
While decoders have rapidly scaled, encoders have remained largely unchanged since BERT. We revisit this disparity by frozen backbone evaluation via probing. Under this lens, the representations of BERT encoders become increasingly $\textit{unexploitable}$ by frozen probes, despite improved perplexity. The misalignment originates in BERT's flat design, which couples representation learning to the token reconstruction loss. We propose $\textbf{CrossBERT}$, a two-part architecture that separates the learning of high-quality encoded representations from the rigid grounding of token reconstruction. This design further enables high masking ratios ($\ge 50\%$) and gradient collection over all tokens via a $\textit{Complementary Masking Strategy}$, respectively increasing throughput by $1.5$ to $2\times$ and sample efficiency by $2\times$. Overall, CrossBERT demonstrates monotonic scaling and superior performance on MTEB(eng, v2) and frozen GLUE benchmarks.
Figures
Reference graph
Works this paper leans on
-
[1]
Training compute-optimal transformer encoder models
Dervishi, Megi and Allauzen, Alexandre and Synnaeve, Gabriel and LeCun, Yann. Training compute-optimal transformer encoder models. Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing. 2025. doi:10.18653/v1/2025.emnlp-main.1804
-
[2]
Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
Smarter, better, faster, longer: A modern bidirectional encoder for fast, memory efficient, and long context finetuning and inference , author=. Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[3]
arXiv preprint arXiv:2502.19587 , year=
NeoBERT: A Next-Generation BERT , author=. arXiv preprint arXiv:2502.19587 , year=
-
[4]
arXiv preprint arXiv:2402.01613 , year=
Nomic embed: Training a reproducible long context text embedder , author=. arXiv preprint arXiv:2402.01613 , year=
-
[5]
Bert: Pre-training of deep bidirectional transformers for language understanding , author=. Proceedings of the 2019 conference of the North American chapter of the association for computational linguistics: human language technologies, volume 1 (long and short papers) , pages=
2019
-
[6]
Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics , pages=
Mteb: Massive text embedding benchmark , author=. Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics , pages=
-
[7]
arXiv preprint arXiv:2401.14391 , year=
Rethinking patch dependence for masked autoencoders , author=. arXiv preprint arXiv:2401.14391 , year=
-
[8]
arXiv preprint arXiv:2502.08769 , year=
Cluster and predict latent patches for improved masked image modeling , author=. arXiv preprint arXiv:2502.08769 , year=
-
[9]
International conference on machine learning , pages=
A simple framework for contrastive learning of visual representations , author=. International conference on machine learning , pages=. 2020 , organization=
2020
-
[10]
Proceedings of the IEEE/CVF international conference on computer vision , pages=
Emerging properties in self-supervised vision transformers , author=. Proceedings of the IEEE/CVF international conference on computer vision , pages=
-
[11]
arXiv preprint arXiv:2304.07193 , year=
Dinov2: Learning robust visual features without supervision , author=. arXiv preprint arXiv:2304.07193 , year=
-
[12]
arXiv preprint arXiv:2508.10104 , year=
Dinov3 , author=. arXiv preprint arXiv:2508.10104 , year=
-
[13]
arXiv preprint arXiv:2112.09118 , year=
Unsupervised dense information retrieval with contrastive learning , author=. arXiv preprint arXiv:2112.09118 , year=
-
[14]
arXiv preprint arXiv:2205.12035 , year=
RetroMAE: Pre-training retrieval-oriented language models via masked auto-encoder , author=. arXiv preprint arXiv:2205.12035 , year=
-
[15]
Proceedings of the 2018 EMNLP workshop BlackboxNLP: Analyzing and interpreting neural networks for NLP , pages=
GLUE: A multi-task benchmark and analysis platform for natural language understanding , author=. Proceedings of the 2018 EMNLP workshop BlackboxNLP: Analyzing and interpreting neural networks for NLP , pages=
2018
-
[16]
arXiv preprint arXiv:1611.09268 , year=
Ms marco: A human generated machine reading comprehension dataset , author=. arXiv preprint arXiv:1611.09268 , year=
-
[17]
Advances in Neural Information Processing Systems , volume=
Datacomp-lm: In search of the next generation of training sets for language models , author=. Advances in Neural Information Processing Systems , volume=
-
[18]
arXiv preprint arXiv:2212.03533 , year=
Text embeddings by weakly-supervised contrastive pre-training , author=. arXiv preprint arXiv:2212.03533 , year=
-
[19]
Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
Self-supervised learning from images with a joint-embedding predictive architecture , author=. Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition , pages=
-
[20]
arXiv preprint arXiv:2105.04906 , year=
Vicreg: Variance-invariance-covariance regularization for self-supervised learning , author=. arXiv preprint arXiv:2105.04906 , year=
-
[21]
arXiv preprint arXiv:2403.00504 , year=
Learning and leveraging world models in visual representation learning , author=. arXiv preprint arXiv:2403.00504 , year=
-
[22]
arXiv preprint arXiv:2511.08544 , year=
LeJEPA: Provable and Scalable Self-Supervised Learning Without the Heuristics , author=. arXiv preprint arXiv:2511.08544 , year=
-
[23]
arXiv preprint arXiv:2504.13181 , year=
Perception encoder: The best visual embeddings are not at the output of the network , author=. arXiv preprint arXiv:2504.13181 , year=
-
[24]
arXiv preprint arXiv:2303.15389 , year=
Eva-clip: Improved training techniques for clip at scale , author=. arXiv preprint arXiv:2303.15389 , year=
-
[25]
Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=
Masked autoencoders are scalable vision learners , author=. Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages=
-
[26]
arXiv preprint arXiv:1907.11692 , year=
Roberta: A robustly optimized bert pretraining approach , author=. arXiv preprint arXiv:1907.11692 , year=
Pith/arXiv arXiv 1907
-
[27]
Advances in neural information processing systems , volume=
Pytorch: An imperative style, high-performance deep learning library , author=. Advances in neural information processing systems , volume=
-
[28]
Mathurin Videau and Badr Youbi Idrissi and Daniel Haziza and Luca Wehrstedt and Jade Copet and Olivier Teytaud and David Lopez-Paz , title =
-
[29]
arXiv preprint arXiv:2104.08663 , year=
Beir: A heterogenous benchmark for zero-shot evaluation of information retrieval models , author=. arXiv preprint arXiv:2104.08663 , year=
-
[30]
Scaling laws for neural language models , author=. arXiv:2001.08361 , year=
Pith/arXiv arXiv 2001
-
[31]
and Sifre, Laurent , title =
Hoffmann, Jordan and Borgeaud, Sebastian and Mensch, Arthur and Buchatskaya, Elena and Cai, Trevor and Rutherford, Eliza and de Las Casas, Diego and Hendricks, Lisa Anne and Welbl, Johannes and Clark, Aidan and Hennigan, Tom and Noland, Eric and Millican, Katie and van den Driessche, George and Damoc, Bogdan and Guy, Aurelia and Osindero, Simon and Simony...
2022
-
[32]
Deepseek llm: Scaling open-source language models with longtermism , author=. arXiv:2401.02954 , year=
-
[33]
Language models scale reliably with over-training and on downstream tasks , author=. arXiv:2403.08540 , year=
-
[34]
Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
MEXMA: Token-level objectives improve sentence representations , author=. Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[35]
Journal of machine learning research , volume=
Exploring the limits of transfer learning with a unified text-to-text transformer , author=. Journal of machine learning research , volume=
-
[36]
arXiv preprint arXiv:2104.08821 , year=
Simcse: Simple contrastive learning of sentence embeddings , author=. arXiv preprint arXiv:2104.08821 , year=
-
[37]
arXiv preprint arXiv:2308.03281 , year=
Towards general text embeddings with multi-stage contrastive learning , author=. arXiv preprint arXiv:2308.03281 , year=
-
[38]
Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics , pages=
Should you mask 15\ author=. Proceedings of the 17th Conference of the European Chapter of the Association for Computational Linguistics , pages=
-
[39]
2020 , eprint=
ELECTRA: Pre-training Text Encoders as Discriminators Rather Than Generators , author=. 2020 , eprint=
2020
-
[40]
2023 , eprint=
DeBERTaV3: Improving DeBERTa using ELECTRA-Style Pre-Training with Gradient-Disentangled Embedding Sharing , author=. 2023 , eprint=
2023
-
[41]
Are ELECTRA ' s Sentence Embeddings Beyond Repair? The Case of Semantic Textual Similarity
Rep, Ivan and Duki \'c , David and S najder, Jan. Are ELECTRA ' s Sentence Embeddings Beyond Repair? The Case of Semantic Textual Similarity. Findings of the Association for Computational Linguistics: EMNLP 2024. 2024. doi:10.18653/v1/2024.findings-emnlp.535
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.