REVIEW 3 major objections 6 minor 12 references
Beyond Pairwise Correlations: Higher-Order Redundancies in Self-Supervised Representation Learning
T0 review · 3 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read This paper claims that SSLPM, a self-supervised method that minimizes redundancy by making masked features hard to predict, is competitive with state-of-the-art SSL methods, and that the best-performing methods exhibit low embedding…
desk verdict A solid SSL method paper with a useful redundancy hierarchy and a fixable proof error, wrapped in an over-strong interpretive story. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central objects are three redundancy measures computed on standardized embedding features: AAC is the mean absolute pairwise covariance; LR is $1$ minus the minimal squared error of a linear (ridge) regression predicting each feature from the others; NLR is $1$ minus the minimal squared error of an MLP predicting each feature from the others. The paper proves these form a hierarchy $AAC \le \sqrt{LR} \le \sqrt{NLR}$, with zero AAC equivalent to zero LR but not to zero NLR, illustrated by a Gaussian counterexample. SSLPM combines Barlow Twins' invariance loss with a masked-prediction loss: a Bernoulli mask hides roughly half the features of both augmented representations, a predictor reconstructs the hidden ones from the visible ones, and the encoder is updated to make reconstruction hard; SSLPM-RR solves the predictor in closed form with ridge regression.
What would settle it
Take the same set of trained SSL models and re-estimate LR and NLR using all 512 embedding features rather than a 20% subsample, with per-model capacity-tuned nonlinear estimators; if BYOL, VICReg, and NNCLR no longer have lower redundancy than SSLPM-RR, or if the redundancy-accuracy correlations reverse, the implicit-redundancy conclusion collapses.
Extended reading notes
Core claim
On its own terms, the paper establishes that redundancy reduction can be lifted from pairwise covariance to general predictability: a representation has high redundancy when one or more of its features can be reconstructed from the rest, and SSLPM removes that redundancy by forcing an encoder to defeat a predictor trained on randomly masked features. The theoretical contribution is the inequality chain $AAC \le \sqrt{LR} \le \sqrt{NLR}$ for standardized features, with proofs that linear and nonlinear predictability capture multi-feature and nonlinear interactions that pairwise covariance can miss, while corollaries show zero AAC is equivalent to zero LR but not to zero NLR. Empirically, SSLPM-RR attains 92.70 Top-1 on CIFAR-10, 70.46 on CIFAR-100, and 79.17 on ImageNet-100, on par with Barlow Twins and above several contrastive baselines; the authors find no evidence that removing higher-order redundancy helps downstream performance, and they find that methods outperforming SSLPM-RR show lower measured redundancy, which they interpret as implicit redundancy reduction.
Load-bearing premise
The implicit-redundancy finding assumes that the fixed linear and MLP estimators used on a 20% feature subsample measure redundancy fairly across models with different activation distributions; if that estimator favors some models, the redundancy ranking, and with it the central interpretation, could be an artifact.
Editorial extensions
If this is right
- SSLPM-RR is competitive with state-of-the-art SSL methods on CIFAR-10, CIFAR-100, and ImageNet-100, despite replacing pairwise decorrelation with a closed-form ridge-regression predictability loss.
- Reducing nonlinear, higher-order redundancy via multilayer predictors does not improve downstream accuracy and can hurt it, so the practical value of redundancy reduction currently lies mainly in the linear regime.
- The best-performing methods in the study, including BYOL, Barlow Twins, VICReg, and NNCLR, all have lower measured embedding redundancy than SSLPM-RR, which the paper reads as evidence for implicit redundancy reduction in high-quality SSL.
- Deepening the projector reduces both linear and nonlinear embedding redundancy, making projector architecture a lever for implicit decorrelation.
- Across SSL methods generally, redundancy and accuracy are only weakly correlated; the strong negative correlation appears specifically in methods with explicit redundancy reduction.
Reading between the lines
- Inference: If implicit redundancy reduction is what separates strong SSL embeddings from weak ones, then the redundancy term in SSLPM-RR may be replaceable by architectural choices such as a deeper projector; a direct test would be whether a lambda=0 SSLPM with a deep projector closes most of the gap to SSLPM-RR.
- Inference: The closed-form ridge predictor makes the redundancy-reduction step cheap and stable, suggesting that other SSL objectives with quadratic prediction losses could use the same trick rather than training a learned predictor.
- Inference: The paper's measures are computed on the final embedding layer of frozen encoders; measuring redundancy at intermediate layers or with different estimator capacities could change the method ranking, so the implicit-redundancy claim has a measurement-dependence worth probing.
- Inference: The authors' observation that too much redundancy reduction collapses performance suggests some residual redundancy is useful; connecting this to information-bottleneck trade-offs is a natural next step.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper formalizes embedding-space redundancy via three measures: average absolute covariance (AAC), linear redundancy (LR), and nonlinear redundancy (NLR). It proves basic inequalities among them and proposes SSLPM, a self-supervised method that reduces redundancy through a competitive game between an encoder and a predictor trained on randomly masked representation features. Two variants are presented: SSLPM-RR (ridge-regression predictor) and SSLPM-SGD (MLP predictor). Experiments on CIFAR-10, CIFAR-100, and ImageNet-100 with ResNet-18 show that SSLPM-RR is competitive with Barlow Twins and other SSL baselines, that within methods with explicit redundancy reduction lower LR is associated with higher downstream accuracy, and that across methods the correlation is weak. Nevertheless, the authors claim that the best-performing methods exhibit lower redundancy and therefore perform implicit redundancy reduction.
Significance. The paper addresses a timely question and provides a useful taxonomy of redundancy measures. The theoretical inequalities are simple but clearly presented, and the SSLPM method is a sensible modern instantiation of predictability minimization. The negative result that removing higher-order redundancies does not improve downstream performance is interesting and potentially important. However, the current version contains a flawed proof of a separating corollary and an over-reaching interpretive claim about implicit redundancy reduction, partly contradicted by the authors' own data and by the fact that two of the cited methods (Barlow Twins and VICReg) perform explicit redundancy reduction. With corrections and robustness checks, the paper could be a valuable contribution.
major comments (3)
- [Corollary 3.5 proof (page 21)] The counterexample claims that 'given any two variables, a nonlinear predictor is able to perfectly reconstruct the third variable.' This is false for Y from (X,Z): the equations determine only Y^2, not the sign of Y, so the minimum MSE predictor is E[Y|X,Z]=0 with MSE 1, giving predictability 0. The same holds for X from (Y,Z). Therefore NLR([X,Y,Z]) is 1/3, not 1, and the proof does not establish the corollary. The corollary may still be true (e.g., let Z = (X^2-1)/sqrt(2) with X ~ N(0,1); then AAC = LR = 0 but NLR = 1/2), but the proof must be corrected.
- [Section 4.5] The sentence 'Given that these methods do not perform active redundancy reduction' is inaccurate: Barlow Twins and VICReg both impose explicit covariance/redundancy penalties, as described in Sections 1 and 2. Including them in the 'implicit' argument conflates explicit and implicit mechanisms. The abstract's more cautious wording ('even methods without explicit redundancy reduction mechanisms') should be aligned with the body; as written, Section 4.5 overstates the evidence for implicit redundancy reduction.
- [Appendix A / Section 4.5] The cross-method redundancy ranking assumes that a single estimator (ridge with cross-validated penalty for LR; a fixed two-hidden-layer MLP with fixed training steps for NLR on a 20% feature subsample) is equally fair to all embedding distributions. Since LR and NLR are defined as 1 minus the achieved normalized MSE, a method whose features are harder to fit with the chosen estimator will appear less redundant without necessarily being so. The paper's own Figure 7 shows no significant across-method correlation on CIFAR-10 (LR r=-0.12, p=0.78; NLR r=-0.11, p=0.80), so the subset claim in Section 4.5 is not backed by a significance test and could be an artifact of estimator capacity. Please add robustness analyses (vary estimator capacity, report redundancy standard errors, or use a distribution-free measure) before drawing the implicit-redundancy conclusion.
minor comments (6)
- [Related Work] "SiamSiam" is a typo; the method is SimSiam (Chen & He).
- [Corollary 3.5 proof] The line "although LR and NLR are zero" should read "although AAC and LR are zero."
- [Section 3.3] The computation of AAC for the constructed example uses notation "(n-1 2)" and "(n 2)" that appears to be a typesetting error; please clarify the combinatorial expressions.
- [Figure 3] The y-axis label "Final Epochs Predictability Loss" conflicts with the definition of predictability as 1 - MSE; the plotted quantity appears to be the prediction error, so rename or clarify.
- [Section 4.5] The text mentions "P values of 0.79 and 0.93" but Figure 7 reports p=0.78 (LR) and p=0.80 (NLR) for CIFAR-10; the text and figures should be consistent.
- [Table 1] Most baselines are single-seed runs; adding at least three seeds for the main baselines would strengthen the competitive claim, though this may be infeasible.
Circularity Check
No significant circularity: the redundancy hierarchy is proved from definitions, SSLPM is evaluated against external baselines, and the implicit-redundancy claim is a qualified post-hoc observation.
full rationale
The derivation of the redundancy hierarchy (Lemma 3.1, Theorem 3.2, Corollaries 3.3-3.5) is self-contained: the inequalities AAC <= sqrt(LR) <= sqrt(NLR) follow directly from the definitions of AAC, LR, and NLR, with the only substantive input being that linear predictors form a subset of the MLP predictors considered in NLR. This is a mathematical fact, not an assumption equivalent to the result. SSLPM's central claim of competitiveness is benchmarked on CIFAR-10, CIFAR-100, and ImageNet-100 against baselines whose hyperparameters are taken from the external solo-learn repository, so it is not forced by construction. The only mildly self-referential element is that SSLPM-RR optimizes ridge-regression predictability during training and is later measured with LR, also a ridge-regression predictability; its low LR is therefore partly by construction. However, the paper does not present this as a prediction, and the broader conclusion about implicit redundancy reduction rests on comparisons with BYOL, VICReg, NNCLR, and Barlow Twins rather than on SSLPM-RR's own training objective. The paper also qualifies the cross-method claim by reporting weak correlations (e.g., CIFAR-10 LR r=-0.12, p=0.78 in Figure 7). The statement that methods like Barlow Twins do not perform active redundancy reduction is imprecise, but that is a correctness/interpretation issue, not circularity. No load-bearing self-citation, imported uniqueness theorem, or ansatz smuggled via citation was found.
Assumptions & free parameters
free parameters (6)
- lambda (SSLPM loss weight) =
grid-searched on CIFAR-10; optimal near 0.25, values up to 2.0 tested
- ridge penalty mu (SSLPM-RR) =
chosen to avoid singular regression; exact value not stated, batch size 256
- masking fraction =
0.5 default (Bernoulli(1/2))
- predictor architecture (SSLPM-SGD) =
MLP 512-128-64-1 for 1-layer; 3-layer and 4-layer variants also tested
- LR ridge penalty mu (measurement) =
chosen via cross-validation
- NLR MLP architecture and training steps =
2 hidden layers, dims 128 and 64; fixed training steps
assumptions (4)
- domain assumption Embedding features are centered and standardized to unit variance before measuring redundancy.
- domain assumption A fixed MLP trained for a fixed number of steps on 80% of the data gives an unbiased estimate of nonlinear predictability on the remaining 20%.
- domain assumption The 20% random subsample of features is representative of the full embedding space.
- ad hoc to paper The counterexample in Corollary 3.5 uses a predictor powerful enough to reconstruct the target variable from the other two.
Cite this review
Pith. "Pith review of Beyond Pairwise Correlations: Higher-Order Redundancies in Self-Supervised Representation Learning." pith.science (2026). https://pith.science/paper/RO7HR7SF
@misc{pith2026241201926,
author = {Pith},
title = {Pith review of: Beyond Pairwise Correlations: Higher-Order Redundancies in Self-Supervised Representation Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/RO7HR7SF}},
note = {Machine review of arXiv:2412.01926}
}
read the original abstract
Several self-supervised learning (SSL) approaches have shown that redundancy reduction in the feature embedding space is an effective tool for representation learning. However, these methods consider a narrow notion of redundancy, focusing on pairwise correlations between features. To address this limitation, we formalize the notion of embedding space redundancy and introduce redundancy measures that capture more complex, higher-order dependencies. We mathematically analyze the relationships between these metrics, and empirically measure these redundancies in the embedding spaces of common SSL methods. Based on our findings, we propose Self Supervised Learning with Predictability Minimization (SSLPM) as a method for reducing redundancy in the embedding space. SSLPM combines an encoder network with a predictor engaging in a competitive game of reducing and exploiting dependencies respectively. We demonstrate that SSLPM is competitive with state-of-the-art methods and find that the best performing SSL methods exhibit low embedding space redundancy, suggesting that even methods without explicit redundancy reduction mechanisms perform redundancy reduction implicitly.
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[3]
They feature a nearly identical final predictability loss as well as accuracies on CIFAR-10. Hence, we conclude that the exact choice of the objective for the ridge regression is likely not of crucial importance for our method. Table 3: Change of regression objective CIFAR-10 Models Top 1 Top 5 Last Epoch Avg Lpred SSLPM-RR with Wdefault 92.81 99.87 0.65 ...
work page 2022
-
[5]
Kartik Gupta, Thalaiyasingam Ajanthan, Anton van den Hengel, and Stephen Gould. Understanding and improving the role of projection head in self-supervised learning.arXiv preprint arXiv:2212.11491 ,
-
[10]
Large batch training of convolutional networks.arXiv preprint arXiv:1708.03888,
Yang You, Igor Gitman, and Boris Ginsburg. Large batch training of convolutional networks.arXiv preprint arXiv:1708.03888,
-
[12]
and is a 100 category subset of the ImageNet dataset Deng et al. (2009). F Additional Evidence for Analysis & Results 22 0.05 0.10 0.15 AAC 40 50 60 70T op1 Accuracy CIFAR-100 - AAC SSLPM-RR: r=-0.89, p<0.01 Barlow T wins: r=-0.90, p<0.01 0.6 0.7 0.8 0.9 LR 40 50 60 70T op1 Accuracy CIFAR-100 - LR SSLPM-RR: r=-0.90, p<0.01 Barlow T wins: r=-0.98, p<0.01 0...
work page 2009
-
[2009]
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding.arXiv preprint arXiv:1810.04805 ,
-
[2018]
Jürgen Schmidhuber. Generative adversarial networks are special cases of artificial curiosity (1990) and also closely related to predictability minimization (1991).Neural Networks, 127:58–66,
work page 1990
-
[2019]
Aaron van den Oord, Yazhe Li, and Oriol Vinyals
URL https://openreview.net/forum?id=Bkg6RiCqY7. Aaron van den Oord, Yazhe Li, and Oriol Vinyals. Representation learning with contrastive predictive coding. arXiv preprint arXiv:1807.03748 ,
-
[2020]
URLhttps://proceedings.mlr.press/v119/chen20j.html. Xinlei Chen and Kaiming He. Exploring simple siamese representation learning. in 2021 ieee. InCVF conference on computer vision and pattern recognition (CVPR) , pp. 15745–15753,
work page 2021
Show all 12 references
-
[2021]
Computer vision self-supervised learning methods on time series.arXiv preprint arXiv:2109.00783,
Daesoo Lee and Erlend Aune. Computer vision self-supervised learning methods on time series.arXiv preprint arXiv:2109.00783,
-
[2022]
Imagenet: A large-scale hierarchical image database
12 Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In 2009 IEEE conference on computer vision and pattern recognition , pp. 248–255. Ieee,
2009
-
[2023]
Vicreg: Variance-invariance-covariance regularization for self-supervised learning
Adrien Bardes, Jean Ponce, and Yann LeCun. Vicreg: Variance-invariance-covariance regularization for self-supervised learning. arXiv preprint arXiv:2105.04906 ,
-
[2024]
doi: 10.3390/e26030252
ISSN 1099-4300. doi: 10.3390/e26030252. URL https://www.mdpi.com/1099-4300/26/3/252. 13 Yao-Hung Hubert Tsai, Shaojie Bai, Louis-Philippe Morency, and Ruslan Salakhutdinov. A note on connecting barlow twins with negative-sample-free contrastive learning.arXiv preprint arXiv:21...
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.