REVIEW 3 major objections 6 minor 89 references
Dual Risk Minimization: Towards Next-Level Robustness in Fine-tuning Zero-Shot Models
T0 review · 3 major / 6 minor · reviewed 2026-08-12 · deepseek-v4-flash
Pith's one-line read Fine-tuning zero-shot models with dual risk minimization improves out-of-distribution robustness beyond FLYP and other baselines.
desk verdict Solid empirical paper on robust fine-tuning; the worst-case-risk story is under-built, but the method works and the paper is honest about its limits. 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 object that carries the argument is the DRM objective (7), $$\min_{\$\theta$} R_s(\$\theta$;$T^{{df}}$)+\$\lambda$ R^c_s(\$\theta$;$T^{{cd}}$),$$ where $R_s$ is the empirical risk with default prompts and $R^c_s$ is the core-feature risk. The core-feature risk is computed with respect to the soft labels $\tilde{p}_c(y|x)$ defined in Eq. (9), which come from per-class min-max normalization in Eq. (8) of the pre-trained CLIP affinities between image embeddings and text embeddings of GPT-4 concept descriptions; the normalization suppresses artifact terms that would otherwise make the soft labels high-entropy. Inference uses a mixture $\hat{p}^{dual}_\theta=\beta\hat{p}^{df}_\theta+(1-\beta)\hat{p}^{cd}_\theta$. Theorem 1's strong-duality result justifies relaxing the constrained IDRM into this weighted sum, and the empirical study in Appendix D makes the case that concept-description affinities respond to foreground core features while staying stable under background changes.
What would settle it
On a domain where LLM concept descriptions are known to be inaccurate, such as breast histology or ocular disease, compare DRM with FLYP under identical hyperparameter selection; if the OOD advantage disappears or reverses while in-distribution accuracy stays comparable, the concept-description proxy is the load-bearing part of the claim.
Extended reading notes
Core claim
The central claim is that minimizing $R_s(\theta;T^{df})+\lambda R^c_s(\theta;T^{cd})$—the standard ERM term supervised by one-hot labels using default prompts, plus a worst-case-risk term supervised by soft labels $\tilde{p}_c(y|x)$ built from CLIP affinities to LLM-generated concept descriptions—preserves core features and improves robustness. The paper proves strong duality between the idealized constrained problem and the weighted dual, and then replaces the intractable worst-case risk over all domains with the core-feature risk on the training domain. On CLIP ViT-L/14@336, DRM raises OOD ImageNet accuracy from 75.9 to 77.1, WILDS-iWildCam macro F1 from 47.1 to 51.8, and WILDS-FMoW worst-region accuracy from 50.7 to 53.1 relative to FLYP plus WiSE-FT, while maintaining comparable in-distribution accuracy.
Load-bearing premise
The load-bearing premise is that CLIP's similarity scores for GPT-4 concept descriptions reliably track the class-defining visual attributes and ignore background and context; the soft labels built from those scores are only a trustworthy stand-in for worst-case risk if this holds.
Editorial extensions
If this is right
- DRM with WiSE-FT raises OOD ImageNet accuracy on CLIP ViT-L/14@336 from 75.9 to 77.1, WILDS-iWildCam macro F1 from 47.1 to 51.8, and WILDS-FMoW worst-region accuracy from 50.7 to 53.1.
- On CLIP ViT-B/16, DRM's relative OOD gains over FLYP are about 5.0% on ImageNet, 12.4% on iWildCam, and 11.1% on FMoW; with WiSE-FT the gains are 1.9%, 11.6%, and 9.8%.
- The ablation shows that using concept descriptions for both the ERM and the WRM term is worse than separating the prompts, so the dual-prompt design is load-bearing for the result.
- DRM is not tied to one generation model: concept descriptions from GPT-3.5, GPT-4, and three Llama-3 sizes all improve OOD performance over FLYP on iWildCam.
- Compared with FLYP, DRM adds roughly 20% to training and inference cost, from the extra text-encoder pass.
Reading between the lines
- Beyond the paper's benchmarks, the method suggests a scaling rule for robust fine-tuning: any model with a text-interface zero-shot head could receive the same dual-prompt treatment, so the recipe may transfer from CLIP to other vision-language and multimodal models.
- The fixed per-class min-max normalization is a natural place to look for further gains; a learned temperature or a calibrated version of $\tilde{p}_c(y|x)$ could reduce sensitivity to $\lambda$ on classes with weak or noisy concept affinities.
- Given the paper's admitted failure of GPT-4 descriptions in medical imaging, an immediate testable extension is to generate concept descriptions with image-grounded multimodal LLMs or expert curation and check whether DRM's OOD advantage reappears in those domains.
- Since DRM improves worst-case robustness without grouped domain labels, a head-to-head against domain-invariant methods on multi-domain benchmarks would separate the contribution of the core-feature proxy from the contribution of the dual objective itself.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes dual risk minimization (DRM) for fine-tuning zero-shot vision-language models such as CLIP. The objective adds to the standard empirical risk, computed with default prompts, a regularization term computed with LLM-generated concept descriptions; the soft targets for this second term are obtained from the pre-trained CLIP model and normalized per class. The authors argue that this regularizer estimates the worst-case risk over domains and thereby preserves core visual features. On ImageNet, WILDS-iWildCam, and WILDS-FMoW, DRM reports consistent OOD improvements over FLYP and other robust fine-tuning baselines, including with WiSE-FT, across three CLIP model sizes. The paper includes ablations on prompt choice, inference combination, normalization, LLM source, and the hyperparameter lambda.
Significance. If the findings hold, DRM is a practically valuable and simple addition to robust fine-tuning: it requires only an LLM-generated concept description per class and a precomputed soft-label set, and the reported gains on ImageNet variants, iWildCam, and FMoW are consistent across model sizes and seeds. The empirical evaluation is a genuine strength: five-seed runs with confidence intervals, ablations in Tables 3 and 10, sensitivity analyses for lambda and for different LLMs, and cost measurements in Appendix F.3. The central conceptual claim, however, that the concept-description soft-label risk is a faithful proxy for worst-case risk over domains, is asserted more than established; the formal derivation from IDRM to DRM has a gap. The empirical OOD improvements remain credible, but the paper's mechanistic explanation is stronger than the evidence supports.
major comments (3)
- [Section 3, Theorem 1 and Appendix A] The strong-duality argument is carried out in prediction space, not in parameter space. Lemma 1 shows convexity of the cross-entropy in the prediction function q(y|x), and the proof then applies Slater's condition to a convex program over q. However, the actual optimizations in (IDRM) and (DRM) are over theta, the parameters of a deep network, for which the objective is not convex. The conclusion that IDRM 'reduces to' min_theta [R_s(theta) + lambda* max_d R_d(theta)] is therefore not established for the parameterized problem. Since this reduction is the formal bridge from IDRM to DRM, please either prove duality under the specific parameterization, state explicit conditions under which it holds, or reframe Theorem 1 as a motivation in function space rather than a theorem about the training objective actually used.
- [Section 4.2, Eqs. (8)-(9)] The identification of CLIP affinities to LLM concept descriptions with the oracle core-feature model p_c(y|x) is the load-bearing step of the method, but it is directly validated only on the 15-class Hard ImageNet study (Table 6 and Appendix D.1), and Appendix G concedes that GPT-4 produces inaccurate concept descriptions in medical imaging domains. The min-max normalization in Eq. (8) is a per-class rank transform over training images rather than a calibrated estimate of core-feature presence, and Eq. (9) distributes the residual probability mass to other classes in proportion to unnormalized affinities whenever gamma(x, y_x) < 1, so p_tilde_c can assign substantial mass on the basis of non-core similarity. The empirical OOD improvements over FLYP remain credible, but the specific claim that R_cs(theta; T_cd) is a worst-case-risk proxy is under-supported. Please provide additional evidence for the core-feature interpretation on the evaluated datasets, or soften the WRM claim and present R_cs as a regularizer motivated by core-feature preservation whose empirical value is established by the ablations.
- [Section 5.3, Table 3 and Table 10] The ablations convincingly show that the concept-description soft labels outperform one-hot labels and default-prompt soft labels as the regularization target, which is strong evidence against a purely generic-distillation explanation. However, the paper does not isolate the effect of the min-max normalization from the effect of the soft-label target: Row 10 of Table 3 shows that the unnormalized direct estimate fails badly, but there is no analysis of what the normalization does to the ranking of classes or to the entropy of p_tilde_c. A simple diagnostic, such as reporting the distribution of gamma(x, y_x) and the average entropy of p_tilde_c across datasets, would substantially strengthen the claim that Eqs. (8)-(9) estimate core-feature presence rather than merely rescale per-class affinities.
minor comments (6)
- [Section 1] The sentence 'The main challenge of applying DRM to real-world tasks is to assess of worst-case risk' contains a grammatical error; it should read 'is to assess the worst-case risk' or 'is the assessment of worst-case risk.'
- [Section 4.1] 'It is also know that non-visual and spurious descriptions contribute significantly to CLIP's representation' should read 'It is also known that...'.
- [Appendix D title] 'Quantitative study on the reliability of concept descriptions verse default prompts' should use 'versus' instead of 'verse'.
- [Table 3] The notation in the 'Affinity norm.' and 'w/ model' columns uses '!' and '%' symbols that are not defined in the caption; please define them or replace them with explicit labels.
- [Figure 1] The rendering of Figure 1 in the submitted PDF is difficult to read: the inline text is fragmented and the diagram is not self-explanatory. Please ensure that the figure is legible and that its caption explains the relationship between ERM, WRM, and DRM without relying on the surrounding prose.
- [References] There are several typographical artifacts in the reference list, such as 'V ondrick' and 'V on Kügelgen'; these should be cleaned up before the camera-ready version.
Circularity Check
No significant circularity: DRM's OOD gains are measured on external benchmarks, and the core-feature proxy is an explicitly labeled, empirically checked assumption rather than a construction that reduces to its own outputs.
full rationale
The claimed derivation chain is: IDRM is relaxed by replacing max_d R_d with R_c_s(theta), where R_c_s is a cross-entropy against the oracle core-feature model p_c(y|x); p_c is estimated by p_tilde_c(y|x) from Eq. (9), computed from pre-trained CLIP affinities to GPT-4 concept descriptions; the final objective (7) is ERM with default prompts plus this regularizer. None of these steps is circular by construction: the soft labels are precomputed once from the frozen theta_0 and are not fit to any of the reported OOD numbers; the OOD accuracies in Tables 1 and 2 (ImageNet 75.9 to 77.1, iWildCam 47.1 to 51.8, FMoW 50.7 to 53.1) come from external benchmark test sets, so the central empirical claim is not forced by the inputs. The identification of CLIP-concept-description affinity with core-feature presence is an assumption, but the paper supports it with an independent operational check in Table 6 and Figure 2 using Hard ImageNet foreground/background removal: concept-description affinities drop by 55.6% when foreground is removed versus 1.9% for default prompts, and by only 10.3% versus 31.1% when background is removed. That check is external to the fine-tuning targets and provides real evidence for the proxy. The paper also transparently labels the regularizer as 'a form of self-distillation targeted at core features,' which is a description of the mechanism rather than an attempt to pass the construction off as an independently derived oracle. The self-references (Zhang et al. 2023a; Gao et al. 2024a) appear only in a list of similar data-generation models 'widely adopted in the literature' and are not load-bearing for the main claim. Appendix G honestly concedes that GPT-4 produced inaccurate concept descriptions in medical imaging domains and that CLIP pre-training data are undisclosed; these limitations weaken domain-scope claims but do not make the ImageNet, iWildCam, or FMoW results circular. The strong-duality argument in Appendix A is somewhat loose because convexity is shown with respect to prediction probabilities rather than the non-convex parameterization theta, but that is a rigor concern, not circularity. Overall, the empirical claim is self-contained against external benchmarks, so the circularity score is 0.
Assumptions & free parameters
free parameters (3)
- lambda (WRM weight) =
chosen from {1, 2, 3, 4, 5} by ID validation; exact per-dataset values not reported
- beta (inference mixture weight) =
beta = 1 / (1 + lambda) by default
- rho (WiSE-FT interpolation weight) =
chosen from 0.1 to 0.9 by ID validation
assumptions (5)
- domain assumption Causal data model: X <- hX(Xc, Xn, eps), Y <- hY(Xc), with causal mechanisms and eps distribution invariant across domains.
- domain assumption Non-core features are generally unreliable across domains: 'leveraging non-core features would almost always lead to worse performance in certain domains'.
- domain assumption CLIP affinities to LLM-generated concept descriptions faithfully measure core visual features.
- ad hoc to paper Min-max normalized soft labels in Eq. (8)-(9) are a valid estimate of the oracle pc(y|x) and promote balanced learning.
- standard math Strong duality holds for IDRM via convexity w.r.t. the prediction distribution and Slater's condition.
invented entities (2)
-
Core/non-core feature decomposition (Xc, Xn)
-
Oracle feature extractor fc and oracle core-feature model pc(y|x)
Cite this review
Pith. "Pith review of Dual Risk Minimization: Towards Next-Level Robustness in Fine-tuning Zero-Shot Models." pith.science (2026). https://pith.science/paper/MZU3LHF7
@misc{pith2026241119757,
author = {Pith},
title = {Pith review of: Dual Risk Minimization: Towards Next-Level Robustness in Fine-tuning Zero-Shot Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/MZU3LHF7}},
note = {Machine review of arXiv:2411.19757}
}
read the original abstract
Fine-tuning foundation models often compromises their robustness to distribution shifts. To remedy this, most robust fine-tuning methods aim to preserve the pre-trained features. However, not all pre-trained features are robust and those methods are largely indifferent to which ones to preserve. We propose dual risk minimization (DRM), which combines empirical risk minimization with worst-case risk minimization, to better preserve the core features of downstream tasks. In particular, we utilize core-feature descriptions generated by LLMs to induce core-based zero-shot predictions which then serve as proxies to estimate the worst-case risk. DRM balances two crucial aspects of model robustness: expected performance and worst-case performance, establishing a new state of the art on various real-world benchmarks. DRM significantly improves the out-of-distribution performance of CLIP ViT-L/14@336 on ImageNet (75.9 to 77.1), WILDS-iWildCam (47.1 to 51.8), and WILDS-FMoW (50.7 to 53.1); opening up new avenues for robust fine-tuning. Our code is available at https://github.com/vaynexie/DRM .
Figures
Reference graph
Works this paper leans on
-
[1]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. Gpt-4 technical report. arXiv preprint arXiv:2303.08774, 2023
arXiv 2023
-
[2]
Varshney
Kartik Ahuja, Jun Wang, Amit Dhurandhar, Karthikeyan Shanmugam, and Kush R. Varshney. Empirical or invariant risk minimization? a sample complexity perspective. In ICLR, 2021
2021
-
[3]
Adapting to latent subgroup shifts via concepts and proxies
Ibrahim Alabdulmohsin, Nicole Chiou, Alexander D’Amour, Arthur Gretton, Sanmi Koyejo, Matt J Kusner, Stephen R Pfohl, Olawale Salaudeen, Jessica Schrouff, and Katherine Tsai. Adapting to latent subgroup shifts via concepts and proxies. In AISTATS, pages 9637--9661. PMLR, 2023
2023
-
[4]
Flamingo: a visual language model for few-shot learning
Jean-Baptiste Alayrac, Jeff Donahue, Pauline Luc, Antoine Miech, Iain Barr, Yana Hasson, Karel Lenc, Arthur Mensch, Katherine Millican, Malcolm Reynolds, et al. Flamingo: a visual language model for few-shot learning. In NeurIPS, volume 35, pages 23716--23736, 2022
2022
-
[5]
The evolution of out-of-distribution robustness throughout fine-tuning
Anders Andreassen, Yasaman Bahri, Behnam Neyshabur, and Rebecca Roelofs. The evolution of out-of-distribution robustness throughout fine-tuning. arXiv preprint arXiv:2106.15831, 2021
arXiv 2021
-
[6]
Martin Arjovsky, L \'e on Bottou, Ishaan Gulrajani, and David Lopez-Paz. Invariant risk minimization. arXiv:1907.02893, 2019
arXiv 1907
-
[7]
Objectnet: A large-scale bias-controlled dataset for pushing the limits of object recognition models
Andrei Barbu, David Mayo, Julian Alverio, William Luo, Christopher Wang, Dan Gutfreund, Josh Tenenbaum, and Boris Katz. Objectnet: A large-scale bias-controlled dataset for pushing the limits of object recognition models. NeurIPS, 32, 2019
2019
-
[8]
Robust optimization, volume 28
Aharon Ben-Tal, Laurent El Ghaoui, and Arkadi Nemirovski. Robust optimization, volume 28. Princeton university press, 2009
2009
Show all 89 references
-
[9]
Robust solutions of optimization problems affected by uncertain probabilities
Aharon Ben-Tal, Dick Den Hertog, Anja De Waegenaere, Bertrand Melenberg, and Gijs Rennen. Robust solutions of optimization problems affected by uncertain probabilities. Management Science, 59 0 (2): 0 341--357, 2013
2013
-
[10]
Improving image generation with better captions
James Betker, Gabriel Goh, Li Jing, Tim Brooks, Jianfeng Wang, Linjie Li, Long Ouyang, Juntang Zhuang, Joyce Lee, Yufei Guo, et al. Improving image generation with better captions. Computer Science. https://cdn. openai. com/papers/dall-e-3. pdf, 2 0 (3): 0 8, 2023
2023
-
[11]
Generalizing from several related classification tasks to a new unlabeled sample
Gilles Blanchard, Gyemin Lee, and Clayton Scott. Generalizing from several related classification tasks to a new unlabeled sample. In NeurIPS, 2011
2011
-
[12]
On the opportunities and risks of foundation models
Rishi Bommasani, Drew A Hudson, Ehsan Adeli, Russ Altman, Simran Arora, Sydney von Arx, Michael S Bernstein, Jeannette Bohg, Antoine Bosselut, Emma Brunskill, et al. On the opportunities and risks of foundation models. arXiv preprint arXiv:2108.07258, 2021
2021 arXiv
-
[13]
Swad: Domain generalization by seeking flat minima
Junbum Cha, Sanghyuk Chun, Kyungjae Lee, Han-Cheol Cho, Seunghyun Park, Yunsung Lee, and Sungrae Park. Swad: Domain generalization by seeking flat minima. In NeurIPS, volume 34, pages 22405--22418, 2021
2021
-
[14]
Domain generalization by mutual-information regularization with pre-trained models
Junbum Cha, Kyungjae Lee, Sungrae Park, and Sanghyuk Chun. Domain generalization by mutual-information regularization with pre-trained models. In ECCV, pages 440--457. Springer, 2022
2022
-
[15]
Disentangled prompt representation for domain generalization
De Cheng, Zhipeng Xu, Xinyang Jiang, Nannan Wang, Dongsheng Li, and Xinbo Gao. Disentangled prompt representation for domain generalization. In CVPR, pages 23595--23604, 2024
2024
-
[16]
Imagenet: A large-scale hierarchical image database
Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Imagenet: A large-scale hierarchical image database. In CVPR, 2009
2009
-
[17]
Statistics of robust optimization: A generalized empirical likelihood approach
John C Duchi, Peter W Glynn, and Hongseok Namkoong. Statistics of robust optimization: A generalized empirical likelihood approach. Mathematics of Operations Research, 46 0 (3): 0 946--969, 2021
2021
-
[18]
u gelgen, Hamed Hassani, George J Pappas, and Bernhard Sch \
Cian Eastwood, Alexander Robey, Shashank Singh, Julius Von K \"u gelgen, Hamed Hassani, George J Pappas, and Bernhard Sch \"o lkopf. Probable domain generalization via quantile risk minimization. In NeurIPS, volume 35, pages 17340--17358, 2022
2022
-
[19]
If clip could talk: Understanding vision-language model representations through their preferred concept descriptions
Reza Esfandiarpoor, Cristina Menghini, and Stephen H Bach. If clip could talk: Understanding vision-language model representations through their preferred concept descriptions. arXiv preprint arXiv:2403.16442, 2024
2024 arXiv
-
[20]
Data determines distributional robustness in contrastive language image pre-training (clip)
Alex Fang, Gabriel Ilharco, Mitchell Wortsman, Yuhao Wan, Vaishaal Shankar, Achal Dave, and Ludwig Schmidt. Data determines distributional robustness in contrastive language image pre-training (clip). In ICML, pages 6216--6234. PMLR, 2022
2022
-
[21]
Born again neural networks
Tommaso Furlanello, Zachary Lipton, Michael Tschannen, Laurent Itti, and Anima Anandkumar. Born again neural networks. In ICML, pages 1607--1616. PMLR, 2018
2018
-
[22]
Han Gao, Kaican Li, Weiyan Xie, Lin Zhi, Yongxiang Huang, Luning Wang, Caleb Chen Cao, and Nevin L. Zhang. Consistency regularization for domain generalization with logit attribution matching. In UAI, 2024 a
2024
-
[23]
Out-of-domain robustness via targeted augmentations
Irena Gao, Shiori Sagawa, Pang Wei Koh, Tatsunori Hashimoto, and Percy Liang. Out-of-domain robustness via targeted augmentations. In ICML, 2023
2023
-
[24]
Clip-adapter: Better vision-language models with feature adapters
Peng Gao, Shijie Geng, Renrui Zhang, Teli Ma, Rongyao Fang, Yongfeng Zhang, Hongsheng Li, and Yu Qiao. Clip-adapter: Better vision-language models with feature adapters. International Journal of Computer Vision, 132 0 (2): 0 581--595, 2024 b
2024
-
[25]
Borrowing treasures from the wealthy: Deep transfer learning through selective joint fine-tuning
Weifeng Ge and Yizhou Yu. Borrowing treasures from the wealthy: Deep transfer learning through selective joint fine-tuning. In CVPR, pages 1086--1095, 2017
2017
-
[26]
Wichmann
Robert Geirhos, Jörn-Henrik Jacobsen, Claudio Michaelis, Richard Zemel, Wieland Brendel, Matthias Bethge, and Felix A. Wichmann. Shortcut learning in deep neural networks. Nature Machine Intelligence, 2020
2020
-
[27]
Finetune like you pretrain: Improved finetuning of zero-shot vision models
Sachin Goyal, Ananya Kumar, Sankalp Garg, Zico Kolter, and Aditi Raghunathan. Finetune like you pretrain: Improved finetuning of zero-shot vision models. In CVPR, pages 19338--19347, 2023
2023
-
[28]
In search of lost domain generalization
Ishaan Gulrajani and David Lopez-Paz. In search of lost domain generalization. In ICLR, 2021
2021
-
[29]
Spottune: transfer learning through adaptive fine-tuning
Yunhui Guo, Honghui Shi, Abhishek Kumar, Kristen Grauman, Tajana Rosing, and Rogerio Feris. Spottune: transfer learning through adaptive fine-tuning. In CVPR, pages 4805--4814, 2019
2019
-
[30]
The many faces of robustness: A critical analysis of out-of-distribution generalization
Dan Hendrycks, Steven Basart, Norman Mu, Saurav Kadavath, Frank Wang, Evan Dorundo, Rahul Desai, Tyler Zhu, Samyak Parajuli, Mike Guo, et al. The many faces of robustness: A critical analysis of out-of-distribution generalization. In ICCV, pages 8340--8349, 2021 a
2021
-
[31]
Natural adversarial examples
Dan Hendrycks, Kevin Zhao, Steven Basart, Jacob Steinhardt, and Dawn Song. Natural adversarial examples. In CVPR, pages 15262--15271, 2021 b
2021
-
[32]
Refine myself by teaching myself: Feature refinement via self-knowledge distillation
Mingi Ji, Seungjae Shin, Seunghyun Hwang, Gibeom Park, and Il-Chul Moon. Refine myself by teaching myself: Feature refinement via self-knowledge distillation. In CVPR, pages 10664--10673, 2021
2021
-
[33]
Scaling up visual and vision-language representation learning with noisy text supervision
Chao Jia, Yinfei Yang, Ye Xia, Yi-Ting Chen, Zarana Parekh, Hieu Pham, Quoc Le, Yun-Hsuan Sung, Zhen Li, and Tom Duerig. Scaling up visual and vision-language representation learning with noisy text supervision. In ICML, pages 4904--4916. PMLR, 2021
2021
-
[34]
Smart: Robust and efficient fine-tuning for pre-trained natural language models through principled regularized optimization
Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Tuo Zhao. Smart: Robust and efficient fine-tuning for pre-trained natural language models through principled regularized optimization. arXiv preprint arXiv:1911.03437, 2019
1911 arXiv
-
[35]
Last layer re-training is sufficient for robustness to spurious correlations
Polina Kirichenko, Pavel Izmailov, and Andrew Gordon Wilson. Last layer re-training is sufficient for robustness to spurious correlations. In ICLR, 2023
2023
-
[36]
Overcoming catastrophic forgetting in neural networks
James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, et al. Overcoming catastrophic forgetting in neural networks. Proceedings of the national academy of scien...
2017
-
[37]
Wilds: A benchmark of in-the-wild distribution shifts
Pang Wei Koh, Shiori Sagawa, Henrik Marklund, Sang Michael Xie, Marvin Zhang, Akshay Balsubramani, Weihua Hu, Michihiro Yasunaga, Richard Lanas Phillips, Irena Gao, et al. Wilds: A benchmark of in-the-wild distribution shifts. In ICML, pages 5637--5664. PMLR, 2021
2021
-
[38]
Fine-tuning can distort pretrained features and underperform out-of-distribution
Ananya Kumar, Aditi Raghunathan, Robbie Matthew Jones, Tengyu Ma, and Percy Liang. Fine-tuning can distort pretrained features and underperform out-of-distribution. In ICLR, 2022
2022
-
[39]
Explicit inductive bias for transfer learning with convolutional networks
Xuhong Li, Yves Grandvalet, and Franck Davoine. Explicit inductive bias for transfer learning with convolutional networks. In ICML, pages 2825--2834. PMLR, 2018
2018
-
[40]
Learning causal semantic representation for out-of-distribution prediction
Chang Liu, Xinwei Sun, Jindong Wang, Haoyue Tang, Tao Li, Tao Qin, Wei Chen, and Tie-Yan Liu. Learning causal semantic representation for out-of-distribution prediction. In NeurIPS, 2021
2021
-
[41]
Visual instruction tuning
Haotian Liu, Chunyuan Li, Qingyang Wu, and Yong Jae Lee. Visual instruction tuning. In NeurIPS, volume 36, 2023
2023
-
[42]
Causality inspired representation learning for domain generalization
Fangrui Lv, Jian Liang, Shuang Li, Bin Zang, Chi Harold Liu, Ziteng Wang, and Di Liu. Causality inspired representation learning for domain generalization. In CVPR, pages 8046--8056, 2022
2022
-
[43]
Domain generalization using causal matching
Divyat Mahajan, Shruti Tople, and Amit Sharma. Domain generalization using causal matching. In ICML, pages 7313--7324. PMLR, 2021
2021
-
[44]
Enhancing clip with gpt-4: Harnessing visual descriptions as prompts
Mayug Maniparambil, Chris Vorster, Derek Molloy, Noel Murphy, Kevin McGuinness, and Noel E O'Connor. Enhancing clip with gpt-4: Harnessing visual descriptions as prompts. In ICCV, pages 262--271, 2023
2023
-
[45]
Context-aware robust fine-tuning
Xiaofeng Mao, Yufeng Chen, Xiaojun Jia, Rong Zhang, Hui Xue, and Zhao Li. Context-aware robust fine-tuning. IJCV, 132 0 (5): 0 1685--1700, 2024
2024
-
[46]
Catastrophic interference in connectionist networks: The sequential learning problem
Michael McCloskey and Neal J Cohen. Catastrophic interference in connectionist networks: The sequential learning problem. In Psychology of learning and motivation, volume 24, pages 109--165. Elsevier, 1989
1989
-
[47]
Visual classification via description from large language models
Sachit Menon and Carl Vondrick. Visual classification via description from large language models. In ICLR, 2022
2022
-
[48]
Accuracy on the line: on the strong correlation between out-of-distribution and in-distribution generalization
John P Miller, Rohan Taori, Aditi Raghunathan, Shiori Sagawa, Pang Wei Koh, Vaishaal Shankar, Percy Liang, Yair Carmon, and Ludwig Schmidt. Accuracy on the line: on the strong correlation between out-of-distribution and in-distribution generalization. In International conferen...
2021
-
[49]
Representation learning via invariant causal mechanisms
Jovana Mitrovic, Brian McWilliams, Jacob C Walker, Lars Holger Buesing, and Charles Blundell. Representation learning via invariant causal mechanisms. In ICLR, 2021
2021
-
[50]
Hard imagenet: Segmentations for objects with strong spurious cues
Mazda Moayeri, Sahil Singla, and Soheil Feizi. Hard imagenet: Segmentations for objects with strong spurious cues. NeurIPS, 35: 0 10068--10077, 2022
2022
-
[51]
Domain generalization via invariant feature representation
Krikamol Muandet, David Balduzzi, and Bernhard Sch \"o lkopf. Domain generalization via invariant feature representation. In ICML, 2013
2013
-
[52]
Lipsum-ft: Robust fine-tuning of zero-shot models using random text guidance
Giung Nam, Byeongho Heo, and Juho Lee. Lipsum-ft: Robust fine-tuning of zero-shot models using random text guidance. In ICLR, 2024
2024
-
[53]
Towards calibrated robust fine-tuning of vision-language models
Changdae Oh, Mijoo Kim, Hyesu Lim, Junhyeok Park, Euiseog Jeong, Zhi-Qi Cheng, and Kyungwoo Song. Towards calibrated robust fine-tuning of vision-language models. arXiv preprint arXiv:2311.01723, 2023
2023 arXiv
-
[54]
Causal inference by using invariant prediction: identification and confidence intervals
Jonas Peters, Peter B \"u hlmann, and Nicolai Meinshausen. Causal inference by using invariant prediction: identification and confidence intervals. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 78 0 (5): 0 947--1012, 2016
2016
-
[55]
Combined scaling for zero-shot transfer learning
Hieu Pham, Zihang Dai, Golnaz Ghiasi, Kenji Kawaguchi, Hanxiao Liu, Adams Wei Yu, Jiahui Yu, Yi-Ting Chen, Minh-Thang Luong, Yonghui Wu, et al. Combined scaling for zero-shot transfer learning. Neurocomputing, 555: 0 126658, 2023
2023
-
[56]
Ins-detclip: Aligning detection model to follow human-language instruction
Renjie Pi, Lewei Yao, Jianhua Han, Xiaodan Liang, Wei Zhang, and Hang Xu. Ins-detclip: Aligning detection model to follow human-language instruction. In ICLR, 2024
2024
-
[57]
Can domain adaptation make object recognition work for everyone? In CVPR, pages 3981--3988, 2022
Viraj Prabhu, Ramprasaath R Selvaraju, Judy Hoffman, and Nikhil Naik. Can domain adaptation make object recognition work for everyone? In CVPR, pages 3981--3988, 2022
2022
-
[58]
What does a platypus look like? generating customized prompts for zero-shot image classification
Sarah Pratt, Ian Covert, Rosanne Liu, and Ali Farhadi. What does a platypus look like? generating customized prompts for zero-shot image classification. In ICCV, pages 15691--15701, 2023
2023
-
[59]
Language models are unsupervised multitask learners
Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, Ilya Sutskever, et al. Language models are unsupervised multitask learners. OpenAI blog, 1 0 (8): 0 9, 2019
2019
-
[60]
Learning transferable visual models from natural language supervision
Alec Radford, Jong Wook Kim, Chris Hallacy, Aditya Ramesh, Gabriel Goh, Sandhini Agarwal, Girish Sastry, Amanda Askell, Pamela Mishkin, Jack Clark, et al. Learning transferable visual models from natural language supervision. In ICML, pages 8748--8763. PMLR, 2021
2021
-
[61]
Do imagenet classifiers generalize to imagenet? In ICML, pages 5389--5400
Benjamin Recht, Rebecca Roelofs, Ludwig Schmidt, and Vaishaal Shankar. Do imagenet classifiers generalize to imagenet? In ICML, pages 5389--5400. PMLR, 2019
2019
-
[62]
Hashimoto, and Percy Liang
Shiori Sagawa, Pang Wei Koh, Tatsunori B. Hashimoto, and Percy Liang. Distributionally robust neural networks. In ICLR, 2020
2020
-
[63]
The pitfalls of simplicity bias in neural networks
Harshay Shah, Kaustav Tamuly, Aditi Raghunathan, Prateek Jain, and Praneeth Netrapalli. The pitfalls of simplicity bias in neural networks. In NeurIPS, volume 33, pages 9573--9585, 2020
2020
-
[64]
How much can clip benefit vision-and-language tasks? In ICLR, 2022
Sheng Shen, Liunian Harold Li, Hao Tan, Mohit Bansal, Anna Rohrbach, Kai-Wei Chang, Zhewei Yao, and Kurt Keutzer. How much can clip benefit vision-and-language tasks? In ICLR, 2022
2022
-
[65]
Clipood: Generalizing clip to out-of-distributions
Yang Shu, Xingzhuo Guo, Jialong Wu, Ximei Wang, Jianmin Wang, and Mingsheng Long. Clipood: Generalizing clip to out-of-distributions. In ICML, pages 31716--31731. PMLR, 2023
2023
-
[66]
Intriguing properties of neural networks
Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. arXiv preprint arXiv:1312.6199, 2013
2013 arXiv
-
[67]
Measuring robustness to natural distribution shifts in image classification
Rohan Taori, Achal Dave, Vaishaal Shankar, Nicholas Carlini, Benjamin Recht, and Ludwig Schmidt. Measuring robustness to natural distribution shifts in image classification. NeurIPS, 33: 0 18583--18599, 2020
2020
-
[68]
Separating style and content
Joshua Tenenbaum and William Freeman. Separating style and content. In NeurIPS, volume 9, 1996
1996
-
[69]
Id and ood performance are sometimes inversely correlated on real-world datasets
Damien Teney, Yong Lin, Seong Joon Oh, and Ehsan Abbasnejad. Id and ood performance are sometimes inversely correlated on real-world datasets. In NeurIPS, volume 36, 2023
2023
-
[70]
Trainable projected gradient method for robust fine-tuning
Junjiao Tian, Zecheng He, Xiaoliang Dai, Chih-Yao Ma, Yen-Cheng Liu, and Zsolt Kira. Trainable projected gradient method for robust fine-tuning. In CVPR, pages 7836--7845, 2023 a
2023
-
[71]
Fast trainable projection for robust fine-tuning
Junjiao Tian, Yen-Cheng Liu, James S Smith, and Zsolt Kira. Fast trainable projection for robust fine-tuning. NeurIPS, 36, 2023 b
2023
-
[72]
Robustness may be at odds with accuracy
Dimitris Tsipras, Shibani Santurkar, Logan Engstrom, Alexander Turner, and Aleksander Madry. Robustness may be at odds with accuracy. In ICLR, 2019
2019
-
[73]
Statistical Learning Theory
Vladimir Vapnik. Statistical Learning Theory. Wiley, 1998
1998
-
[74]
Statistical decision functions which minimize the maximum risk
Abraham Wald. Statistical decision functions which minimize the maximum risk. Annals of Mathematics, pages 265--280, 1945
1945
-
[75]
Learning robust global representations by penalizing local predictive power
Haohan Wang, Songwei Ge, Zachary Lipton, and Eric P Xing. Learning robust global representations by penalizing local predictive power. In NeurIPS, 2019
2019
-
[76]
Robust fine-tuning of zero-shot models
Mitchell Wortsman, Gabriel Ilharco, Jong Wook Kim, Mike Li, Simon Kornblith, Rebecca Roelofs, Raphael Gontijo Lopes, Hannaneh Hajishirzi, Ali Farhadi, Hongseok Namkoong, et al. Robust fine-tuning of zero-shot models. In CVPR, pages 7959--7971, 2022
2022
-
[77]
Demystifying clip data
Hu Xu, Saining Xie, Xiaoqing Tan, Po-Yao Huang, Russell Howes, Vasu Sharma, Shang-Wen Li, Gargi Ghosh, Luke Zettlemoyer, and Christoph Feichtenhofer. Demystifying clip data. In ICLR, 2024
2024
-
[78]
Learning concise and descriptive attributes for visual recognition
An Yan, Yu Wang, Yiwu Zhong, Chengyu Dong, Zexue He, Yujie Lu, William Yang Wang, Jingbo Shang, and Julian McAuley. Learning concise and descriptive attributes for visual recognition. In ICCV, pages 3090--3100, 2023
2023
-
[79]
Language in a bottle: Language model guided concept bottlenecks for interpretable image classification
Yue Yang, Artemis Panagopoulou, Shenghao Zhou, Daniel Jin, Chris Callison-Burch, and Mark Yatskar. Language in a bottle: Language model guided concept bottlenecks for interpretable image classification. In CVPR, pages 19187--19197, 2023
2023
-
[80]
Ood-bench: Quantifying and understanding two dimensions of out-of-distribution generalization
Nanyang Ye, Kaican Li, Haoyue Bai, Runpeng Yu, Lanqing Hong, Fengwei Zhou, Zhenguo Li, and Jun Zhu. Ood-bench: Quantifying and understanding two dimensions of out-of-distribution generalization. In CVPR, pages 7947--7958, 2022
2022
-
[81]
Continual learning through synaptic intelligence
Friedemann Zenke, Ben Poole, and Surya Ganguli. Continual learning through synaptic intelligence. In ICML, pages 3987--3995. PMLR, 2017
2017
-
[82]
Side-tuning: a baseline for network adaptation via additive side networks
Jeffrey O Zhang, Alexander Sax, Amir Zamir, Leonidas Guibas, and Jitendra Malik. Side-tuning: a baseline for network adaptation via additive side networks. In ECCV, pages 698--714. Springer, 2020
2020
-
[83]
Be your own teacher: Improve the performance of convolutional neural networks via self distillation
Linfeng Zhang, Jiebo Song, Anni Gao, Jingwei Chen, Chenglong Bao, and Kaisheng Ma. Be your own teacher: Improve the performance of convolutional neural networks via self distillation. In ICCV, pages 3713--3722, 2019
2019
-
[84]
Self-distillation: Towards efficient and compact neural networks
Linfeng Zhang, Chenglong Bao, and Kaisheng Ma. Self-distillation: Towards efficient and compact neural networks. TPAMI, 44 0 (8): 0 4388--4403, 2021
2021
-
[85]
Zhang, Kaican Li, Han Gao, Weiyan Xie, Zhi Lin, Zhenguo Li, Luning Wang, and Yongxiang Huang
Nevin L. Zhang, Kaican Li, Han Gao, Weiyan Xie, Zhi Lin, Zhenguo Li, Luning Wang, and Yongxiang Huang. A causal framework to unify common domain generalization approaches. arXiv preprint arXiv:2307.06825, 2023 a
2023 arXiv
-
[86]
Pointclip: Point cloud understanding by clip
Renrui Zhang, Ziyu Guo, Wei Zhang, Kunchang Li, Xupeng Miao, Bin Cui, Yu Qiao, Peng Gao, and Hongsheng Li. Pointclip: Point cloud understanding by clip. In CVPR, pages 8552--8562, 2022
2022
-
[87]
Connecting unseen domains: Cross-domain invariant learning in recommendation
Yang Zhang, Yue Shen, Dong Wang, Jinjie Gu, and Guannan Zhang. Connecting unseen domains: Cross-domain invariant learning in recommendation. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development in Information Retrieval, pages 1894--1898, 2023 b
2023
-
[88]
Freelb: Enhanced adversarial training for natural language understanding
Chen Zhu, Yu Cheng, Zhe Gan, Siqi Sun, Tom Goldstein, and Jingjing Liu. Freelb: Enhanced adversarial training for natural language understanding. In ICLR, 2020
2020
-
[89]
Minigpt-4: Enhancing vision-language understanding with advanced large language models
Deyao Zhu, Jun Chen, Xiaoqian Shen, Xiang Li, and Mohamed Elhoseiny. Minigpt-4: Enhancing vision-language understanding with advanced large language models. In ICLR, 2024
2024
Reviewed August 12, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.