REVIEW 4 major objections 4 minor 13 references
FairDropout: Using Example-Tied Dropout to Enhance Generalization of Minority Groups
T0 review · 4 major / 4 minor · reviewed 2026-08-08 · deepseek-v4-flash
Pith's one-line read FairDropout claims that minority-group failures come from memorization, and that dropping dedicated memorizing neurons restores worst-group accuracy without group labels.
desk verdict Consistent worst-group gains from a simple intervention, but the missing dropout baseline and underspecified mask rule leave the example-tied mechanism unproven. 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 machine is the example-tied dropout layer, a parameter-free layer that divides its input neurons into two sets: a fraction $p_{\mathrm{gen}}$ of generalizing neurons seen by every example, and the remaining $(1-p_{\mathrm{gen}})H$ neurons, from which each example is uniformly assigned a fixed number $p_{\mathrm{mem}}(1-p_{\mathrm{gen}})H$ of memorizing neurons. Training uses both sets, so the network can learn to park example-specific spurious patterns in the memorizing neurons; inference drops them and keeps only the shared generalizing features. The layer is inserted after an intermediate layer (or after a newly added projection layer before the classifier head in BERT), and its position is tuned along with $p_{\mathrm{gen}}$ and $p_{\mathrm{mem}}$. The fair aspect is that every example gets the same number of memorizing neurons, so no example is forced to share a memorizer with another.
What would settle it
A concrete experiment: take a FairDropout-trained model, apply the neuron-flipping procedure to minority-group examples, and check whether the critical neurons that flip their predictions lie inside the $p_{\mathrm{gen}}$ generalizing set; if a substantial share of those critical neurons are generalizing neurons, then dropping the memorizing subset is not what drives the worst-group gain, and the proposed mechanism fails.
Extended reading notes
Core claim
The central discovery is that misgeneralization to minority groups is linked to example-level memorization, and that memorization can be steered into reserved neurons so that dropping them at inference removes the spurious reliance. Concretely, using the neuron-flipping procedure, the paper shows that minority-group examples in a ResNet-50 trained on CelebA are memorized: fewer neurons are needed to flip their predictions, and in about 75% of cases dropping those critical neurons improves test worst-group accuracy. FairDropout operationalizes this by allocating memorizing neurons uniformly across examples during training; at test time it discards them. The result is that worst-group accuracy rises from about 45% to around 80% on CelebA in the warm-up, and across the subpopulation benchmark the method consistently beats ERM, with FairDropout-DFR outperforming all standalone methods on four of five datasets.
Load-bearing premise
The load-bearing premise is that the generalizing neurons—the $p_{\mathrm{gen}}$ fraction seen by every example—do not themselves memorize minority examples, so dropping the dedicated memorizing neurons at inference leaves robust features intact; the paper flags this hypothesis as requiring further exploration.
Editorial extensions
If this is right
- FairDropout improves worst-group accuracy over ERM on all five evaluated datasets (CelebA, MetaShift, Waterbirds, MultiNLI, MIMIC-CXR) without using group labels in training or validation.
- Combining FairDropout with DFR classifier retraining outperforms every standalone method on four of five datasets, indicating that reducing memorization during training amplifies the benefits of last-layer retraining.
- The method transfers across modalities: image classification (CelebA, MetaShift, Waterbirds), text entailment (MultiNLI), and chest X-ray analysis (MIMIC-CXR).
- Because FairDropout is applied on top of standard cross-entropy training, it can be stacked with existing loss-based or reweighting methods rather than replacing them, and it preserves pretrained features when inserted after a projection layer before the classifier head in BERT.
Reading between the lines
- Beyond the paper: a natural next test is whether FairDropout generalizes to settings where memorization is beneficial, such as long-tail learning; the paper's own limitation discussion flags this open question.
- Beyond the paper: the layer position is tuned per dataset, suggesting the right abstraction level for memorization varies by task, and automatic placement selection could extend the method to new architectures.
- Beyond the paper: since FairDropout redirects memorization without changing the loss, it could plausibly be combined with other group-label-free debiasing techniques such as contrastive learning or feature reweighting, potentially compounding gains.
- Beyond the paper: if the mechanism is causal rather than correlational, similar example-tied masking could be applied to attention heads or filters in architectures beyond ResNet and BERT.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes FairDropout, an example-tied dropout layer for improving worst-group accuracy under spurious correlations without requiring group labels. The layer splits neurons into generalizing neurons shared by all examples and memorizing neurons allocated per example; the memorizing neurons are dropped at inference. The authors motivate the method with analyses on CelebA showing that minority-group examples exhibit a larger train/test generalization gap and require fewer critical neurons to flip their predictions. They evaluate FairDropout on the subpopulation shift benchmark suite (CelebA, MetaShift, Waterbirds, MultiNLI, MIMIC-CXR) and report worst-group accuracy improvements over ERM and competitive or superior numbers against several baselines, with a combined FairDropout-DFR variant achieving the best results on four of five datasets.
Significance. If the central claim is established, the contribution is valuable: a simple, group-label-free architectural layer that improves worst-group accuracy across vision, language, and medical benchmarks would be a practically useful addition to the spurious-correlation toolbox. The paper has notable strengths: it builds on a concrete mechanistic hypothesis (memorization localization), uses a standardized benchmark suite with baselines from Yang et al. (2023), reports 3-run averages in Table 2, and includes a small hyperparameter sensitivity analysis. However, the mechanism attribution is currently not established because the core allocation rule is underspecified and the method is not compared against standard dropout or random-pruning controls.
major comments (4)
- [§3.3, Fig. 4, §4.1] The core mechanism is underspecified. The text in §3.3 says each example is 'allocated a set of memorizing neurons uniformly sampled with probability pmem', but the caption of Fig. 4 and the warm-up in §4.1 state that 'each image allocates only one memorizing neuron'. More importantly, the paper never states whether an example's mask is fixed across training epochs or resampled at every forward pass. If masks are resampled per pass, FairDropout reduces to a stochastic dropout layer with a deterministic test-time rule, and the claimed example-tied memorization mechanism is not what is being evaluated. This ambiguity is load-bearing for every conclusion in the paper, and it must be resolved with an explicit algorithmic description and, ideally, released code.
- [§4.2, Table 2] There is no standard dropout baseline with a matched keep probability, nor a random-pruning control where an equal number of randomly chosen neurons is dropped at inference. Without these controls, the observed worst-group accuracy gains over ERM in Table 2 could be due to capacity reduction or regularization rather than to the example-tied allocation of memorizing neurons. Adding such controls is necessary to support the paper's mechanistic claim that FairDropout specifically redirects memorization.
- [§4.2.1, 'Positions of the FairDropout Layers'] On ResNet-50, the FairDropout layer is tuned over positions dp2-dp5, i.e., before residual blocks, which places it before BatchNorm layers in several configurations. At inference, all memorizing neurons are dropped, changing the input distribution to downstream BatchNorm layers whose running statistics were estimated during training with those neurons active. This train/test input-distribution mismatch is not discussed, and it could contribute to the reported effects independently of the memorization story. The authors should either place FairDropout after BatchNorm, retrain the BatchNorm statistics in test mode, or provide an analysis showing that the mismatch is negligible.
- [§3.2, Figs. 2-3, §5] The motivating memorization analysis is based on only 100 samples per group with no error bars, and Fig. 3 reports that dropping critical neurons improves worst-group accuracy in roughly 75% of cases without confidence intervals. The paper itself acknowledges in §5 that the key assumption that generalizing neurons do not themselves memorize minority examples 'requires further exploration'. These limitations weaken the causal motivation for the method, and the authors should either strengthen the analysis (e.g., with multiple seeds, bootstrap intervals, or larger samples) or more carefully frame the contribution as purely empirical.
minor comments (4)
- [Table 3] The pgen hyperparameter range is listed as {.2, .3, .4, .5, 6}; the final entry is presumably 0.6 and should be corrected.
- [§4.2.2] The claim that 'FairDropout-DFR achieves state-of-the-art performance, outperforming all standalone methods on four of five datasets' is not accurate for MIMIC-CXR, where FairDropout-DFR (70.3) is below the standalone FairDropout (70.6); the wording should be adjusted to acknowledge this exception.
- [§4.2.1] The classifier-retraining method DFR is attributed to '(Yao et al., 2022)', but the DFR method cited elsewhere in the paper is from Kirichenko et al. (2023); the Yao et al. reference corresponds to LISA. This citation appears to be a typo.
- [§4.2.1, 'Models'] BERT is cited as '(Sung et al., 2019)', but Sung et al. is a domain-adapted BERT variant; the original BERT architecture should be attributed to Devlin et al. (2018).
Circularity Check
No meaningful circularity; FairDropout is an empirical intervention whose gains are measured on held-out test sets, not derived from its own construction.
full rationale
FairDropout is presented as an architectural modification, not as a theorem or first-principles derivation. The core claim that dropping memorizing neurons improves worst-group accuracy is validated empirically on test sets from five benchmarks (Table 2), where the model must still learn useful features in the retained, generalizing neurons. The motivating analysis in Sec. 3.2 / Fig. 3 is diagnostic and is not used as a fitted parameter; hyperparameters are selected on worst-class validation accuracy, a standard practice. The method's definition, i.e., allocating a fixed number of memorizing neurons per example and dropping them at inference, does not by construction guarantee improved worst-group accuracy, since the generalizing neurons could still memorize minority examples, a limitation the paper explicitly acknowledges in Sec. 5. The only overlapping-author citation (Hameed et al., 2024) appears in related work as an extension of DFR and is not load-bearing for FairDropout's claims. No equation or result in the paper reduces to its inputs by definition, and no fitted quantity is renamed as a prediction.
Assumptions & free parameters
free parameters (5)
- pgen =
tuned from {0.2, 0.3, 0.4, 0.5, 0.6}; final per dataset not reported
- pmem =
tuned from {0.001, 0.1, 0.2, 0.4}; final per dataset not reported
- learning_rate =
tuned per dataset from {1e-3, 1e-4, 1e-5}
- weight_decay =
tuned per dataset from {1e-3, 1e-4, 1e-5, 1e-6}
- FairDropout_position =
tuned per dataset from {dp2, dp3, dp4, dp5} for ResNet-50 and {dplogits, dpfc} for BERT
assumptions (5)
- domain assumption Memorization can be localized to a minimal set of neurons identified by the Maini et al. (2023) greedy search.
- domain assumption Minority-group examples are memorized and this memorization is detrimental to their generalization.
- domain assumption The generalizing neurons (shared by all examples) will learn robust features and will not themselves memorize minority examples.
- domain assumption Worst-class accuracy on the validation set is a good proxy for worst-group accuracy when group labels are unavailable.
- domain assumption Pre-trained features from ImageNet and BERT are preserved when fine-tuning with FairDropout, so dropping memorizing neurons does not destroy core features.
Cite this review
Pith. "Pith review of FairDropout: Using Example-Tied Dropout to Enhance Generalization of Minority Groups." pith.science (2026). https://pith.science/paper/WGSQ4FJE
@misc{pith2026250206695,
author = {Pith},
title = {Pith review of: FairDropout: Using Example-Tied Dropout to Enhance Generalization of Minority Groups},
year = {2026},
howpublished = {\url{https://pith.science/paper/WGSQ4FJE}},
note = {Machine review of arXiv:2502.06695}
}
read the original abstract
Deep learning models frequently exploit spurious features in training data to achieve low training error, often resulting in poor generalization when faced with shifted testing distributions. To address this issue, various methods from imbalanced learning, representation learning, and classifier recalibration have been proposed to enhance the robustness of deep neural networks against spurious correlations. In this paper, we observe that models trained with empirical risk minimization tend to generalize well for examples from the majority groups while memorizing instances from minority groups. Building on recent findings that show memorization can be localized to a limited number of neurons, we apply example-tied dropout as a method we term FairDropout, aimed at redirecting this memorization to specific neurons that we subsequently drop out during inference. We empirically evaluate FairDropout using the subpopulation benchmark suite encompassing vision, language, and healthcare tasks, demonstrating that it significantly reduces reliance on spurious correlations, and outperforms state-of-the-art methods.
Figures
Figures from the paper (2 more)
Reference graph
Works this paper leans on
-
[1]
Concrete problems in ai safety
Amodei, D., Olah, C., Steinhardt, J., Christiano, P., Schul- man, J., and Man ´e, D. Concrete problems in ai safety. arXiv preprint arXiv:1606.06565,
-
[5]
Not Only the Last-Layer Features for Spurious Correlations: All Layer Deep Feature Reweighting
Hameed, H. W., Nanfack, G., and Belilovsky, E. Not only the last-layer features for spurious correlations: All layer deep feature reweighting. arXiv preprint arXiv:2409.14637,
-
[6]
In-context learn- ing creates task vectors
Hendel, R., Geva, M., and Globerson, A. In-context learn- ing creates task vectors. In Findings of the Association for Computational Linguistics: EMNLP 2023, pp. 9318– 9333,
work page 2023
-
[8]
9 Submission and Formatting Instructions for ICML 2025 Liang, W. and Zou, J. Metashift: A dataset of datasets for evaluating contextual distribution shifts and training conflicts. arXiv preprint arXiv:2202.06523,
arXiv 2025
-
[9]
Stephenson, C., Padhy, S., Ganesh, A., Hui, Y ., Tang, H., and Chung, S. Y . On the geometry of generalization and memorization in deep neural networks. In 9th Interna- tional Conference on Learning Representations, ICLR 2021,
work page 2021
-
[10]
Pre-training bert on domain resources for short answer grading
Sung, C., Dhamecha, T., Saha, S., Ma, T., Reddy, V ., and Arora, R. Pre-training bert on domain resources for short answer grading. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP), pp. 6071–6075,
work page 2019
-
[11]
The caltech-ucsd birds-200-2011 dataset
Wah, C., Branson, S., Welinder, P., Perona, P., and Belongie, S. The caltech-ucsd birds-200-2011 dataset
2011
-
[13]
10 Submission and Formatting Instructions for ICML 2025 A. Appendix A.1. Hyperparameters Table 3 describes the range of hyperparameters that we used to tune the hyperparameters. Table
work page 2025
Show all 13 references
-
[2016]
Invariant risk minimization
Arjovsky, M., Bottou, L., Gulrajani, I., and Lopez- Paz, D. Invariant risk minimization. arXiv preprint arXiv:1907.02893,
1907 arXiv
-
[2019]
Distribution density, tails, and outliers in machine learning: Metrics and applications
Carlini, N., Erlingsson, U., and Papernot, N. Distribution density, tails, and outliers in machine learning: Metrics and applications. arXiv preprint arXiv:1910.13427,
1910 arXiv
-
[2020]
Model patching: Closing the subgroup performance gap with data augmentation
Goel, K., Gu, A., Li, Y ., and R´e, C. Model patching: Closing the subgroup performance gap with data augmentation. arXiv preprint arXiv:2008.06775,
2008 arXiv
-
[2021]
E., Pollard, T
Johnson, A. E., Pollard, T. J., Greenbaum, N. R., Lun- gren, M. P., Deng, C.-y., Peng, Y ., Lu, Z., Mark, R. G., Berkowitz, S. J., and Horng, S. Mimic-cxr-jpg, a large publicly available database of labeled chest radiographs. arXiv e-prints, pp. arXiv–1901,
1901
-
[2022]
Spurious correlations in machine learning: A survey
Ye, W., Zheng, G., Cao, X., Ma, Y ., Hu, X., and Zhang, A. Spurious correlations in machine learning: A survey. arXiv preprint arXiv:2402.12715,
Reviewed August 8, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.