REVIEW 3 major objections 7 minor 43 references
Most accurate models degrade fastest under temporal drift
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 · glm-5.2
2026-07-08 20:43 UTC pith:VFTD3AGH
load-bearing objection Solid empirical study with one real confound in the frozen-encoder comparison the 3 major comments →
Drift Happens: An Empirical Study of Neural Architecture Robustness to Temporal Distribution Shift
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
The paper identifies an inverse relationship between in-distribution performance and temporal robustness that is governed by the strength of a model's inductive bias. Architectures with strong structural priors extract highly discriminative, localized features that are tightly bound to the training period and thus fragile under temporal shift. The paper also identifies a null case: on the arXiv multi-label classification task, where the pretrained representation already captures the discriminative signal, no architecture gains an in-distribution advantage, and consequently no architecture decays faster than the rest. This suggests the trade-off only manifests when an inductive bias actively扇
What carries the argument
The temporal drift matrix, a K×K grid where each cell records performance of a model trained on cumulative data through period i and evaluated on period j. Three summary statistics distill the matrix: in-distribution score (diagonal average), future score (average of cells where evaluation period exceeds training cutoff), and decay (the difference, oriented so positive always means worse robustness).
Load-bearing premise
The paper attributes robustness differences to inductive bias, but the model families are not capacity-matched. On Yearbook, smaller variants within each family decay less than larger ones, so model capacity — not just inductive bias — may be driving some of the observed decay patterns, leaving the central causal claim partially confounded.
What would settle it
If capacity-matched architectures with different inductive biases showed identical decay rates, the claim that inductive bias (rather than capacity) drives temporal robustness differences would be weakened.
If this is right
- Practitioners selecting architectures for deployment should weigh expected time-to-retraining alongside in-distribution accuracy, as the highest-scoring model at training time may be the least reliable once deployed.
- Frozen pretrained encoders offer a middle ground: lower starting accuracy but steadier degradation, making them preferable when retraining cycles are long or infrequent.
- The finding that the accuracy-robustness trade-off disappears when the task is already solved by the pretrained representation suggests that the trade-off is not inherent to architectures themselves but depends on whether the inductive bias extracts features beyond what the representation already provides.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper presents a systematic empirical study of how neural architecture choices affect robustness to temporal distribution shift, evaluated across three time-indexed datasets (Yearbook, Amazon Reviews, arXiv) spanning image classification, text regression, and multi-label text classification. Using a unified temporal drift matrix framework, the authors train models on cumulative historical data and evaluate on both earlier and later periods, comparing model families from MLPs and CNNs to recurrent networks, Transformers, and frozen pretrained encoders. The central finding is that architectures with stronger inductive biases achieve higher in-distribution accuracy but degrade faster under temporal drift, while frozen pretrained encoders trade in-distribution accuracy for steadier temporal robustness. The study is well-motivated, the evaluation protocol is carefully designed, and the release of code, experiment presets, and W&B artifacts supports reproducibility.
Significance. The paper addresses a practically important question—how architectural inductive biases interact with temporal drift—that has not been systematically studied across multiple modalities and architecture families. The temporal drift matrix framework is a clean and reusable contribution, and the forgetting-curve and saliency-map analyses add qualitative depth. The reproducibility commitment is strong: versioned experiment presets, pinned environments, public W&B run histories, and per-model drift-matrix galleries. The cross-domain scope (image, text regression, multi-label text) and the breadth of architectures (12 trained-from-scratch plus 9 frozen encoders on Yearbook alone; 12 plus 7–8 on each text task) exceed prior work such as Wild-Time, which focused on a narrower architecture set per dataset. The practical guidance—that architecture selection should weigh expected retraining horizons, not just in-distribution accuracy—is actionable and well-supported by the data.
major comments (3)
- §5.1, Tables 3–5: The paper's central claim has two pillars. Pillar 1 (stronger inductive bias → faster decay among trained-from-scratch models) is reasonably supported: the large variants (MLP-L, CNN-L, ResNet-L at ~2.1M params; Table 3) are approximately capacity-matched, and the decay ordering holds (MLP-L: 12.2%, CNN-L: 13.7%, ResNet-L: 13.9%; Table 5). However, Pillar 2 (frozen pretrained encoders → slower decay due to 'coarser, more stable representations') has an unaddressed confound. The frozen encoders have 770–4k trainable parameters (Table 4) versus 94k–2.2M for trained models (Table 3). A linear classification head with 770 trainable parameters cannot fit complex period-specific features regardless of backbone representation quality. The paper attributes the frozen encoders' lower decay to representation quality (§5.1: 'coarser, more stable representations'), but an equallyPl
- §5.1, Table 5: ViT-L (8.0% decay) is more robust than CNN-L (13.7%) and ResNet-L (13.9%), yet the paper's narrative groups ViTs with the 'strong inductive bias' models that 'degrade fastest.' The ViT family has the weakest spatial prior among trained models, so its lower decay is consistent with the paper's thesis, but the text does not discuss this explicitly. The omission matters because ViT-L's decay (8.0%) is closer to the frozen encoders (7.9–10.4%) than to the CNNs/ResNets, which complicates the binary framing of 'strong bias = fast decay' versus 'frozen encoder = slow decay.' The authors should clarify where ViTs fall in this spectrum and whether their weaker spatial prior explains their intermediate robustness.
- §5.2.2, Table 21: On arXiv, the paper reports that all trained-from-scratch families have similar in-distribution AUC (97.2–98.1%) and similar decay (2.7–3.4%), and interprets this as evidence that 'where the bias gains nothing in distribution it forms no period-specific features to lose.' However, two frozen encoders (DeBERTa-v3: 6.5% decay, ELECTRA: 7.3%) degrade substantially more than the trained models. This is the opposite of the paper's general claim that frozen encoders are more robust. The paper mentions this anomaly but does not analyze it. Since DeBERTa-v3 is the most robust model on Amazon Reviews (0.043 decay; Table 13), its poor arXiv performance is puzzling and suggests that frozen-encoder robustness is dataset-dependent rather than driven by a general property of 'coarse, stable representations.' The authors should discuss this discrepancy and its implications for the un
minor comments (7)
- §4.3: The paper states that 'model selection is based on the final checkpoint.' This is unusual—most temporal robustness studies use early stopping on a validation set from the training period. Using the final checkpoint may overfit to the training period and inflate decay. A brief justification or a comparison with validation-based selection would strengthen the protocol.
- §6.1: The limitations section acknowledges that families are not capacity-matched and that inductive bias and capacity are 'partially confounded,' but does not mention the frozen-encoder trainable-parameter disparity (770–4k vs. 94k–2.2M). This should be added for completeness.
- Figure 2: The Amazon Reviews panel uses balanced MSE (lower is better), while Yearbook uses accuracy and arXiv uses macro AUC (both higher is better). The color scale direction is consistent within each panel, but a reader scanning across panels must mentally invert the interpretation. A note in the caption would help.
- §3.1.2: The Amazon Reviews subsample is described as 'a stratified sample of 300,000 reviews' across seven categories, but the stratification variable (by category? by time? by rating?) is not specified. Clarifying this would aid reproduction.
- Tables 6–9, 14–17, 22–25: Several per-cutoff tables show negative decay values (e.g., Table 8: CNN-L trained through 1978 has -5.4% decay, meaning future performance exceeds in-distribution performance). These cases are not discussed. A brief note explaining when and why this occurs would help interpretation.
- §2.1, Figure 1: The figure caption references 'virtual drift' for covariate shift, citing [19], but [19] is a bachelor's thesis. While not incorrect, a more established reference for the virtual drift terminology would be preferable.
- The paper mentions 'Extended version. Accepted at QCDS 2026; the proceedings version will appear in Springer LNCS.' If there are differences between this preprint and the accepted version, noting them would help reviewers assess novelty.
Simulated Author's Rebuttal
We thank the referee for a careful and constructive report. The three major comments each identify genuine gaps in the manuscript's interpretive framing, and we agree that all three warrant revision. Below we address each point in turn.
read point-by-point responses
-
Referee: §5.1, Tables 3–5: Pillar 2 (frozen pretrained encoders → slower decay due to 'coarser, more stable representations') has an unaddressed confound. The frozen encoders have 770–4k trainable parameters versus 94k–2.2M for trained models. A linear classification head with 770 trainable parameters cannot fit complex period-specific features regardless of backbone representation quality. The paper attributes the frozen encoders' lower decay to representation quality, but an equally plausible explanation is that the limited trainable head capacity mechanically prevents fitting period-specific features.
Authors: The referee is correct that the trainable-parameter disparity is an unaddressed confound. The frozen encoders have 770–4k trainable parameters in their linear heads, while the trained-from-scratch models have 94k–2.2M. It is entirely plausible that the frozen encoders' lower decay is partly or wholly attributable to the limited capacity of the linear head to fit period-specific features, rather than (or in addition to) the stability of the pretrained backbone representations. Our manuscript currently attributes the lower decay solely to representation quality ('coarser, more stable representations'), which overstates what the experimental design can support. We will revise §5.1 and the abstract to acknowledge this confound explicitly. Specifically, we will add a paragraph in §5.1 noting that the frozen-encoder regime differs from the trained-from-scratch regime along two axes simultaneously—backbone representation quality and trainable head capacity—and that our experimental design does not isolate the two. We will soften the causal language from 'due to coarser, more stable representations' to something like 'associated with the frozen-encoder regime, which combines pretrained representations with substantially lower trainable capacity.' We will also note this as a limitation in §6.1 and flag the controlled experiment (e.g., matching head capacity across frozen and trained models) as future work. We cannot fully resolve this confound within the current experimental data, so the revision will be a candid acknowledgment rather than a new experiment. revision: yes
-
Referee: §5.1, Table 5: ViT-L (8.0% decay) is more robust than CNN-L (13.7%) and ResNet-L (13.9%), yet the paper's narrative groups ViTs with the 'strong inductive bias' models that 'degrade fastest.' The ViT family has the weakest spatial prior among trained models, so its lower decay is consistent with the paper's thesis, but the text does not discuss this explicitly. The omission matters because ViT-L's decay (8.0%) is closer to the frozen encoders (7.9–10.4%) than to the CNNs/ResNets. The authors should clarify where ViTs fall in this spectrum and whether their weaker spatial prior explains their intermediate robustness.
Authors: We agree that the manuscript's narrative does not explicitly address where ViTs fall on the inductive-bias spectrum, and this omission creates an apparent tension with the binary framing of 'strong bias = fast decay' versus 'frozen encoder = slow decay.' The referee's observation is correct and important: ViTs have the weakest spatial prior among the trained-from-scratch models (self-attention over patches, no convolutional locality or translation equivariance), and ViT-L's decay of 8.0% is indeed closer to the frozen encoders (7.9–10.4%) than to the CNNs/ResNets (13.7–13.9%). This is actually consistent with our thesis—ViTs sit at the low-inductive-bias end of the trained-from-scratch spectrum, so their intermediate robustness is what the thesis predicts—but the manuscript does not make this explicit. We will revise §5.1 to discuss the ViT family's position explicitly. We will note that the inductive-bias spectrum among trained models runs from MLPs (no spatial prior) through ViTs (weak spatial prior via self-attention) to CNNs/ResNets (strong locality and translation equivariance), and that the decay ordering follows this gradient: ViT-L decays less than the CNNs/ResNets, consistent with its weaker spatial prior. We will also adjust the language to avoid the binary framing the referee rightly flags, replacing it with a spectrum-based description. revision: yes
-
Referee: §5.2.2, Table 21: On arXiv, two frozen encoders (DeBERTa-v3: 6.5% decay, ELECTRA: 7.3%) degrade substantially more than the trained models (2.7–3.4%). This is the opposite of the paper's general claim that frozen encoders are more robust. DeBERTa-v3 is the most robust model on Amazon Reviews (0.043 decay), so its poor arXiv performance is puzzling and suggests that frozen-encoder robustness is dataset-dependent rather than driven by a general property of 'coarse, stable representations.' The authors should discuss this discrepancy and its implications for the unified claim.
Authors: The referee is correct that the DeBERTa-v3 and ELECTRA anomaly on arXiv is not adequately analyzed in the manuscript and that it complicates the unified claim. We will revise §5.2.2 to discuss this discrepancy explicitly. Our interpretation is as follows: on arXiv, the task (sorting papers into subject categories) is already well-solved by the shared frozen RoBERTa embeddings that all trained-from-scratch models use, so no architecture gains an in-distribution advantage and all trained models decay similarly (2.7–3.4%). The frozen encoders that perform worse (DeBERTa-v3, ELECTRA) likely do so not because their representations are less stable, but because their representations are less well-aligned with the arXiv task to begin with—DeBERTa-v3 and ELECTRA have lower in-distribution AUC on arXiv (90.7% and 88.9% at the 2000 cutoff; Table 22), so their higher decay reflects a lower starting point rather than faster forgetting of period-specific features. This is consistent with the referee's suggestion that frozen-encoder robustness is dataset-dependent. We will add this analysis to §5.2.2 and will also temper the general claim in the conclusion and abstract to note that frozen-encoder robustness is observed consistently on Yearbook and Amazon Reviews but does not hold uniformly on arXiv, where task-representation alignment moderates the effect. We acknowledge that we cannot fully explain why DeBERTa-v3, which is the most robust model on Amazon Reviews, is among the least robust on arXiv; the revision will state this as an open question rather than force a post-hoc rationalization. revision: yes
Circularity Check
No circularity found — empirical study with no derivations or fitted constants
full rationale
This is a purely empirical study with no theoretical derivations, fitted constants, or first-principles predictions that could be circular. The temporal drift matrix (Eq. 1) is defined as M_ij = perf(f_i, D_j), a direct evaluation of trained models on held-out data. The summary statistics ID, Fut, and Dec (Eqs. 6–8) are computed directly from matrix entries with no fitting. The central claim—that architectural inductive biases shape temporal robustness—is supported by empirical observations on three external benchmarks (Yearbook, Amazon Reviews, arXiv) using standard pretrained models, not by any self-cited theoretical result. The two self-citations (Ref [4] Modyn, Ref [19] Holzinger thesis) are contextual references to retraining orchestration and drift analysis infrastructure; neither is load-bearing for the paper's claims about inductive bias and temporal decay. The paper explicitly acknowledges confounds (capacity not matched, §6.1) rather than hiding them behind a derivation. No step in the evaluation chain reduces to its own inputs by construction.
Axiom & Free-Parameter Ledger
free parameters (3)
- Learning rates =
task-specific
- Number of epochs =
fixed
- Class weights (w_c, w_r) =
inverse frequency
axioms (4)
- standard math Temporal distribution shift can be decomposed into covariate, label, and concept drift.
- domain assumption Cumulative historical training reflects realistic deployment scenarios.
- domain assumption Model selection based on the final checkpoint is representative of best obtainable performance.
- ad hoc to paper Architectures within a family at different sizes isolate the effect of inductive bias.
read the original abstract
Real-world data distributions evolve over time, inducing temporal distribution shift that can substantially degrade the reliability of deployed machine learning systems. However, the extent to which architectural choices and their associated inductive biases affect temporal robustness remains insufficiently understood. We present a systematic empirical comparison of temporal robustness across three heterogeneous, time-indexed domains encompassing image classification, multi-label text classification, and text regression tasks. Using a unified evaluation framework based on temporal drift matrices, we train models on cumulative historical data and evaluate their performance on both earlier and later time periods, thereby quantifying cross-temporal generalization. Our study spans model families ranging from simple multilayer perceptrons and convolutional networks to recurrent networks and pretrained Transformer-based encoders. Collectively, the results show that architectural inductive biases systematically shape temporal robustness: models whose inductive biases lead them to exploit localized, highly discriminative features attain the highest in-distribution accuracy, yet those features are often the ones that change most over time, so these models degrade fastest, while pretrained encoders that draw on coarser, more stable representations drift more gradually. These observations offer practical guidance for selecting architectures for real-world systems subject to temporal drift.
Figures
Reference graph
Works this paper leans on
-
[1]
Automatically detecting data drift in machine learning classifiers
Samuel Ackerman, Orna Raz, Marcel Zalmanovici, and Aviad Zlotnick. Automatically detecting data drift in machine learning classifiers, 2021. URL https: //arxiv.org/abs/2111.05672
work page internal anchor Pith review Pith/arXiv arXiv 2021
-
[2]
Gabriel J. Aguiar and Alberto Cano. A comprehen- sive analysis of concept drift locality in data streams,
-
[3]
URL https://arxiv.org/abs/2311. 06396
-
[4]
A theory of learning from different domains
Shai Ben-David, John Blitzer, Koby Crammer, Alex Kulesza, Fernando Pereira, and Jennifer Wortman Vaughan. A theory of learning from different domains. Machine Learning, 79(1):151–175, 2010
work page 2010
-
[5]
Modyn: Data-centric machine learning pipeline orchestration.Proc
Maximilian Böther, Ties Robroek, Viktor Gsteiger, Robin Holzinger, Xianzhe Ma, Pınar Tözün, and Ana Klimovic. Modyn: Data-centric machine learning pipeline orchestration.Proc. ACM Manag. Data, 3 (1), February 2025. doi: 10.1145/3709705. URL https://doi.org/10.1145/3709705
-
[6]
Kyunghyun Cho, Bart van Merrienboer, Caglar Gul- cehre, Dzmitry Bahdanau, Fethi Bougares, Holger 9 Drift Happens: Neural Architecture Robustness to Temporal Distribution Shift Schwenk, and Yoshua Bengio. Learning phrase rep- resentations using RNN encoder–decoder for statisti- cal machine translation. InProceedings of the 2014 Conference on Empirical Meth...
-
[7]
Kevin Clark, Minh-Thang Luong, Quoc V . Le, and Christopher D. Manning. ELECTRA: Pre-training text encoders as discriminators rather than generators. In International Conference on Learning Representations (ICLR), 2020
work page 2020
-
[8]
Cornell University. arxiv dataset, 2024. URL https: //www.kaggle.com/dsv/7548853
-
[9]
BERT : Pre-training of Deep Bidirectional Transformers for Language Understanding
Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. BERT: Pre-training of deep bidi- rectional transformers for language understanding. In Proceedings of the 2019 Conference of the North Amer- ican Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL- HLT), pages 4171–4186. Association for Computa- tio...
-
[10]
An image is worth 16x16 words: Transformers for image recognition at scale
Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition at scale. InInternational Conference on Learning Representations (ICLR), 2021
work page 2021
-
[11]
EV A-02: A visual representation for neon genesis.Image and Vision Computing, 149:105171, 2024
Yuxin Fang, Quan Sun, Xinggang Wang, Tiejun Huang, Xinlong Wang, and Yue Cao. EV A-02: A visual representation for neon genesis.Image and Vision Computing, 149:105171, 2024
work page 2024
-
[12]
A survey on concept drift adaptation.ACM Computing Surveys, 46(4):1–37, 2014
João Gama, Indr ˙e Žliobait ˙e, Albert Bifet, Mykola Pechenizkiy, and Abdelhamid Bouchachia. A survey on concept drift adaptation.ACM Computing Surveys, 46(4):1–37, 2014. doi: 10.1145/2523813
-
[13]
A century of portraits: A visual historical record of american high school yearbooks
Shiry Ginosar, Kate Rakelly, Sarah Sachs, Brian Yin, and Alexei A Efros. A century of portraits: A visual historical record of american high school yearbooks. InIEEE International Conference on Computer Vision Workshops, pages 1–7, 2015
work page 2015
-
[14]
Shiry Ginosar, Kate Rakelly, Sarah Sachs, Brian Yin, Crystal Lee, Philipp Krahenbuhl, and Alexei A. Efros. A century of portraits: A visual historical record of american high school yearbooks, 2019
work page 2019
-
[15]
In search of lost domain generalization
Ishaan Gulrajani and David Lopez-Paz. In search of lost domain generalization. InInternational Confer- ence on Learning Representations, 2021
work page 2021
-
[16]
Deep residual learning for image recognition
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2016
work page 2016
-
[17]
Masked autoencoders are scalable vision learners
Kaiming He, Xinlei Chen, Saining Xie, Yanghao Li, Piotr Dollár, and Ross Girshick. Masked autoencoders are scalable vision learners. InProceedings of the IEEE/CVF Conference on Computer Vision and Pat- tern Recognition (CVPR), 2022
work page 2022
-
[18]
Pengcheng He, Jianfeng Gao, and Weizhu Chen. De- BERTaV3: Improving DeBERTa using ELECTRA- style pre-training with gradient-disentangled embed- ding sharing. InInternational Conference on Learning Representations (ICLR), 2023
work page 2023
-
[19]
Long short- term memory.Neural Computation, 9(8):1735–1780,
Sepp Hochreiter and Jürgen Schmidhuber. Long short- term memory.Neural Computation, 9(8):1735–1780,
-
[20]
doi: 10.1162/neco.1997.9.8.1735
-
[21]
An analysis of drift- and cost-aware ml retraining triggering policies in modyn
Robin Holzinger. An analysis of drift- and cost-aware ml retraining triggering policies in modyn. Bachelor’s thesis, Technical University of Munich, September
-
[22]
Supervisors: Prof. Dr. Viktor Leis., Jana Vatter, Prof. Dr. Ana Klimovi´c, Maximilian Böther
-
[23]
Bridging Language and Items for Retrieval and Recommendation: Benchmarking LLMs as Semantic Encoders
Yupeng Hou, Jiacheng Li, Zhankui He, An Yan, Xiusi Chen, and Julian McAuley. Bridging language and items for retrieval and recommendation.arXiv preprint arXiv:2403.03952, 2024
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[24]
Convolutional neural networks for sen- tence classification
Yoon Kim. Convolutional neural networks for sen- tence classification. InProceedings of the 2014 Conference on Empirical Methods in Natural Lan- guage Processing (EMNLP), pages 1746–1751. As- sociation for Computational Linguistics, 2014. doi: 10.3115/v1/D14-1181
-
[25]
Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. InInternational Confer- ence on Learning Representations, 2015
work page 2015
-
[26]
WILDS: A benchmark of in-the-wild distribution shifts
Pang Wei Koh, Shiori Sagawa, Henrik Marklund, Sang Michael Xie, Marvin Zhang, Akshay Balsubra- mani, Weihua Hu, Michihiro Yasunaga, Richard Lanas Phillips, Irena Gao, et al. WILDS: A benchmark of in-the-wild distribution shifts. InInternational Confer- ence on Machine Learning, pages 5637–5664. PMLR, 2021
work page 2021
-
[27]
RoBERTa: A Robustly Optimized BERT Pretraining Approach
Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Man- dar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke 10 Drift Happens: Neural Architecture Robustness to Temporal Distribution Shift Zettlemoyer, and Veselin Stoyanov. RoBERTa: A ro- bustly optimized BERT pretraining approach.arXiv preprint arXiv:1907.11692, 2019
work page internal anchor Pith review Pith/arXiv arXiv 1907
-
[28]
Zhuang Liu, Hanzi Mao, Chao-Yuan Wu, Christoph Feichtenhofer, Trevor Darrell, and Saining Xie. A Con- vNet for the 2020s. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogni- tion (CVPR), 2022
work page 2022
-
[29]
Cost- effective retraining of machine learning models, 2023
Ananth Mahadevan and Michael Mathioudakis. Cost- effective retraining of machine learning models, 2023
work page 2023
-
[30]
Cost-aware retraining for machine learning
Ananth Mahadevan and Michael Mathioudakis. Cost-aware retraining for machine learning. Knowledge-Based Systems, 293:111610, 2024. ISSN 0950-7051. doi: https://doi.org/10. 1016/j.knosys.2024.111610. URL https: //www.sciencedirect.com/science/ article/pii/S0950705124002454
-
[31]
Maxime Oquab, Timothée Darcet, Théo Moutakanni, Huy V o, Marc Szafraniec, Vasil Khalidov, Pierre Fer- nandez, Daniel Haziza, Francisco Massa, Alaaeldin El-Nouby, Mahmoud Assran, Nicolas Ballas, Woj- ciech Galuba, Russell Howes, Po-Yao Huang, Shang- Wen Li, Ishan Misra, Michael Rabbat, Vasu Sharma, Gabriel Synnaeve, Hu Xu, Hervé Jégou, Julien Mairal, Patri...
work page 2024
-
[32]
Failing loudly: An empirical study of methods for detecting dataset shift
Stephan Rabanser, Stephan Günnemann, and Zachary Lipton. Failing loudly: An empirical study of methods for detecting dataset shift. InAdvances in Neural Information Processing Systems, volume 32, 2019
work page 2019
-
[33]
Learning trans- ferable visual models from natural language supervi- sion
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sas- try, Amanda Askell, Pamela Mishkin, Jack Clark, Gretchen Krueger, and Ilya Sutskever. Learning trans- ferable visual models from natural language supervi- sion. InProceedings of the 38th International Confer- ence on Machine Learning (ICML), 2021
work page 2021
-
[34]
DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter
Victor Sanh, Lysandre Debut, Julien Chaumond, and Thomas Wolf. DistilBERT, a distilled version of BERT: smaller, faster, cheaper and lighter.arXiv preprint arXiv:1910.01108, 2019
work page internal anchor Pith review Pith/arXiv arXiv 1910
-
[35]
Oriane Siméoni, Huy V . V o, Maximilian Seitzer, Fed- erico Baldassarre, Maxime Oquab, Cijo Jose, Vasil Khalidov, Marc Szafraniec, Seungeun Yi, Michaël Ra- mamonjisoa, Francisco Massa, Daniel Haziza, Luca Wehrstedt, Jianyuan Wang, Timothée Darcet, Théo Moutakanni, Leonel Sentana, Claire Roberts, Andrea Vedaldi, Jamie Tolan, John Brandt, Camille Cou- prie,...
work page internal anchor Pith review Pith/arXiv arXiv 2025
-
[36]
MPNet: Masked and permuted pre-training for language understanding
Kaitao Song, Xu Tan, Tao Qin, Jianfeng Lu, and Tie- Yan Liu. MPNet: Masked and permuted pre-training for language understanding. InAdvances in Neural Information Processing Systems (NeurIPS), 2020
work page 2020
-
[37]
Con- tinuum: A platform for cost-aware, low-latency con- tinual learning
Huangshi Tian, Minchen Yu, and Wei Wang. Con- tinuum: A platform for cost-aware, low-latency con- tinual learning. InProceedings of the ACM Sympo- sium on Cloud Computing, SoCC ’18, page 26–40, New York, NY , USA, 2018. Association for Com- puting Machinery. ISBN 9781450360111. doi: 10.1145/3267809.3267817. URL https://doi. org/10.1145/3267809.3267817
-
[38]
Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. InAdvances in Neural Information Processing Sys- tems, volume 30. Curran Associates, Inc., 2017
work page 2017
-
[39]
MiniLM: Deep self- attention distillation for task-agnostic compression of pre-trained transformers
Wenhui Wang, Furu Wei, Li Dong, Hangbo Bao, Nan Yang, and Ming Zhou. MiniLM: Deep self- attention distillation for task-agnostic compression of pre-trained transformers. InAdvances in Neural Infor- mation Processing Systems (NeurIPS), 2020
work page 2020
-
[40]
Benjamin Warner, Antoine Chaffin, Benjamin Clavié, Orion Weller, Oskar Hallström, Said Taghadouini, Alexis Gallagher, Raja Biswas, Faisal Ladhak, Tom Aarsen, Nathan Cooper, Griffin Adams, Jeremy Howard, and Iacopo Poli. Smarter, better, faster, longer: A modern bidirectional encoder for fast, mem- ory efficient, and long context finetuning and inference. ...
work page internal anchor Pith review Pith/arXiv arXiv 2024
-
[41]
Hellerstein, Natacha Crooks, and Joseph E
Sarah Wooders, Xiangxi Mo, Amit Narang, Kevin Lin, Ion Stoica, Joseph M. Hellerstein, Natacha Crooks, and Joseph E. Gonzalez. Ralf: Accuracy-aware scheduling for feature store maintenance.Proc. VLDB Endow., 17(3):563–576, nov 2023. ISSN 2150-8097. doi: 10.14778/3632093.3632116. URL https:// doi.org/10.14778/3632093.3632116
-
[42]
Wild-time: A benchmark of in-the-wild distribution shift over time
Huaxiu Yao, Caroline Choi, Bochuan Cao, Yoonho Lee, Pang Wei Koh, and Chelsea Finn. Wild-time: A benchmark of in-the-wild distribution shift over time. InAdvances in Neural Information Processing Sys- tems, 2022
work page 2022
-
[43]
Sigmoid loss for language image pre-training
Xiaohua Zhai, Basil Mustafa, Alexander Kolesnikov, and Lucas Beyer. Sigmoid loss for language image pre-training. InProceedings of the IEEE/CVF Interna- tional Conference on Computer Vision (ICCV), 2023. 11 Drift Happens: Neural Architecture Robustness to Temporal Distribution Shift Appendix A. Reproducibility Experiments are defined as versioned preset s...
work page 2023
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.