REVIEW 4 major objections 6 minor 1 cited by
Information Gain-Guided Causal Intervention for Autonomous Debiasing Large Language Models
T0 review · 4 major / 6 minor · reviewed 2026-08-16 · deepseek-v4-flash
Pith's one-line read An LLM can be debiased by rewriting its training data until the biased feature yields zero information gain about the answer, which improves zero-shot transfer across tasks.
desk verdict A coherent debiasing recipe with a clean criterion, but the paper never isolates the rewriting step from the balancing objective, so the 'across tasks' claim is only partly supported. 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 load-bearing object is the information gain-guided data debiasing goal: for any biased feature B, the dataset must satisfy IG(Y,B)=0, equivalently N(y_i,b_k)=N(y_j,b_k) for every feature value and answer pair. To reach this state, the framework first identifies biased features automatically with a causal-guided active learning method, then performs a causal intervention do(B=b_k) by using the LLM to rewrite samples via few-shot prompting, and selects which samples to rewrite by solving a linear program whose objective is minimal rewriting subject to the count-balance constraint. The rewriting step is what carries the empirical weight: it alters the joint distribution of biased feature and answer without, by assumption, changing the semantics that determine the correct answer.
What would settle it
A control experiment that rewrites the same number of samples without targeting any biased feature; if transfer gains match ICD's, the improvement is not due to bias removal. A second check is human annotation of rewritten samples for whether the gold answer still holds; if a substantial fraction change meaning, the debiasing explanation is unsupported.
Extended reading notes
Core claim
The central claim is that predictive but non-causal features ('biased features') in instruction-tuning datasets can be eliminated by enforcing the information-theoretic condition IG(Y,B)=0—the biased feature B provides no information about the answer Y. The paper derives the operational form P(Y|B)=P(Y), realizes it as the count-balancing requirement N(y_i,b_k)=N(y_j,b_k), and achieves this by a causal intervention do(B=b_k) that rewrites a fraction of examples with the LLM itself, solving a linear program to minimize the number of rewrites. Trained on the rewritten data, the LLM no longer relies on the biased feature and transfers better to held-out datasets of the same task, while keeping in-domain performance and even improving general benchmarks such as TruthfulQA. The authors frame this as the first strict criterion for an unbiased instruction-tuning dataset.
Load-bearing premise
The method assumes that few-shot rewriting changes only the targeted biased feature and leaves every other property of the sample that determines the answer unchanged.
Editorial extensions
If this is right
- ICD improves zero-shot transfer accuracy over vanilla fine-tuning on SNLI, MRPC, IMDB, and Squadv2 while preserving in-domain accuracy on MNLI, QQP, SST2, Squadv1, and TriviaQA.
- On challenge sets HANS and PAWS, which remove dataset biases, ICD outperforms both vanilla fine-tuning and the prior-knowledge baseline Razor.
- Datasets debiased by one LLM (Llama3.1-8B) can be used to fine-tune a different LLM (Gemma2-9B) with the same debiasing benefit.
- General ability benchmarks MMLU, BBH, and TruthfulQA do not decline after debiasing; TruthfulQA and BBH improve.
- The IG=0 condition provides a formal, task-agnostic definition of what an unbiased instruction-tuning dataset must satisfy.
Reading between the lines
- If the count-balancing criterion is the right target, the same principle could be applied to any biased feature in any dataset, turning debiasing into a data-curation step that does not require knowing the downstream task.
- Because the paper reports no check that rewritten examples remain semantically equivalent, some of the transfer gains may come from data augmentation rather than bias removal; a random-rewriting control would separate these explanations.
- The framework inherits the limitation that bias identification requires a task with standard answers, so open-ended or generative tasks still lack an automatic debiasing route within this approach.
- The linear-programming formulation suggests a general principle: among all datasets satisfying the independence condition, prefer the one closest to the original; this framing could support future work on minimal-intervention debiasing.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes ICD, an information gain-guided causal intervention debiasing framework for LLMs. The method first fine-tunes a pretrained LLM on the original instruction-tuning data, then uses the CAL method to identify biased features, and rewrites a subset of the training data with the LLM itself so that, within each value of the biased feature, the answer counts are approximately balanced. This realizes the stated goal that the biased feature provides zero information gain for the answer (IG(Y,B)=0). The debiased dataset is then used for standard supervised fine-tuning. Experiments across NLI, paraphrase identification, sentiment analysis, and QA report improved zero-shot transfer on SNLI, MRPC, HANS, and PAWS, along with gains on MMLU, BBH, and TruthfulQA, while in-domain accuracy is roughly maintained. The paper also shows that data debiased by Llama3.1-8B can be used to fine-tune Gemma2-9B with similar benefits.
Significance. If the causal attribution is established, the paper would provide a principled, automatic debiasing method with a clean information-theoretic objective: a derivation from IG(Y,B)=0 to the count-balancing rule N(y_i,b_k)=N(y_j,b_k). The strengths include the algebraic clarity of the derivation, the use of standard deviations over three runs, the automatic nature of the pipeline, and the demonstration that a debiased dataset transfers across different base LLMs. The main empirical claim, however, is broader than the evidence: the transfer gains on sentiment and QA are within noise, and the experiments do not isolate the information-gain balancing from the generic effect of LLM rewriting. The paper is therefore of interest but requires additional controls and a more measured claim before it can be accepted.
major comments (4)
- [Section 3.3 and Section 5.1] The experiments do not include a control that isolates the causal intervention (Eq. 6 balancing) from the rewriting operation itself. The only manipulation is the few-shot LLM rewriting described in Section 3.3, and the paper compares it only against vanilla SFT and a prior-knowledge baseline. Without a condition that performs the same number of LLM rewrites while not enforcing the information-gain goal (e.g., random paraphrasing or rewriting to balance a non-identified feature), the improvements on SNLI, MRPC, HANS, and PAWS could be attributed to generic data augmentation or to a shift in example difficulty rather than to the removal of the B-Y association. This is load-bearing because the paper's central claim is specifically about the information gain-guided criterion.
- [Section 3.3, footnote 3, and Appendix D] There is no semantic-equivalence check for the rewritten examples. Footnote 3 concedes that semantics tightly tied to the biased feature must change (e.g., substituting the person in the answer), and Appendix D checks only that the targeted feature changed (lexical overlap rate, negation presence, or popularity as judged by the biased LLM). The paper should verify that the rewritten samples retain their gold answer and remain plausible, for example through human evaluation or a second-model consistency check, and should report the rate at which rewriting had to change the answer. Without such a check, the observed transfer gains may reflect changes in content difficulty or new artifacts rather than debiasing.
- [Table 1] The abstract and Section 5.1 (point 2) claim that ICD achieves consistent improvement across all transfer test sets, but the SA and QA transfer gains are negligible: Llama IMDB +0.1, Gemma IMDB +0.3, Llama Squadv2 +0.4, Gemma Squadv2 +0.3, several of which are within one standard deviation of the vanilla baseline. The claim of improved generalizability should be tempered to the NLI and PI tasks (SNLI, MRPC, HANS, PAWS), or significance testing should be provided to support the cross-task claim.
- [Section 5.1 and Appendix E] The comparison with Razor is not a fair automatic-debiasing comparison for QA, because Appendix E states that Razor cannot be applied to QA and is therefore only applied to MNLI, QQP, and SST2; the Razor rows for QA are effectively identical to vanilla. The text should explicitly state this limitation when claiming that ICD outperforms Razor on transfer test sets. Additionally, since the proposed method relies on CAL for biased-feature identification, the paper should include a CAL-based control (e.g., CAL's in-context learning debiasing or a CAL-identified feature without the count-balancing rewrite) to separate the contribution of the new information-gain objective from the contribution of feature identification.
minor comments (6)
- [Section 3.2, Eq. (5)] The step from Eq. (4) to Eq. (5) relies on the additional assumption that P(Y) is uniform ("there is no prior knowledge about Y"); this is a modeling choice, not a consequence of IG(Y,B)=0, and should be stated as an assumption.
- [Section 5.1] The text refers to "IDB" in the discussion of general ability; this should be "ICD".
- [Appendix C] There are typos in the lexical overlap classes: "low lexical overelap" appears twice, and the third class should read "high lexical overlap" instead of "low lexical overelap (bigger than 0.6)".
- [Section 3.3] The details of the few-shot rewriting prompt and the retry mechanism are deferred to the supplemental material; including the prompt (or a pointer to it) in an appendix would improve reproducibility.
- [Appendix D] For popularity bias, checking the feature using the biased LLM itself is circular; the paper should validate this popularity judgment against human annotation or another reference.
- [Table 1] The claim of "maintaining performance on the in-domain datasets" should acknowledge the small drops on MNLI (Llama 84.3 to 83.8, Gemma 76.2 to 75.7) and QQP (Llama 86.3 to 85.7, Gemma 87.0 to 86.5), even if these are within the reported standard deviations.
Circularity Check
No circular reduction: the IG=0 to count-balancing derivation is algebraically direct and the transfer gains are externally evaluated; the only self-referential dependency is the CAL bias-identification citation.
full rationale
The paper's claimed derivation is self-contained: Section 3.2 derives the debiasing goal from IG(Y,B)=0 (Eq. 1) through H(Y|B)=H(Y) (Eq. 2) to the count-balancing condition N(yi,bk)=N(yj,bk) (Eq. 6), and the proof in Appendix B is a direct algebraic manipulation. The uniform-prior assumption used to reach Eq. 5 is a stated design choice, not an input-output inversion. Section 3.3 implements Eq. 6 by LLM rewriting that is checked against the targeted biased feature (Appendix D), and the headline results are measured on external held-out transfer and challenge sets (SNLI, MRPC, IMDB, Squadv2, HANS, PAWS) plus general-ability benchmarks (MMLU, BBH, TruthfulQA). No reported 'prediction' is a fitted parameter, and no evaluation set is used to construct Eq. 6. The only self-referential dependency is Section 3.1's use of CAL (Sun et al. [35]), the same group's prior method, described as 'currently the only automatic method for identifying interpretable biased features'; this is a component-level dependency rather than a circular reduction, because CAL's output is an input feature set and the transfer improvements are externally evaluated. Appendix A flags that CAL cannot handle non-standard-answer tasks, which is a scope limitation, not a circular step. Potential concerns about the lack of a rewriting-only control and small effect sizes are experimental-attribution issues, not circularity. Accordingly, no circular step meets the evidence bar; the minor self-citation warrants a low non-zero score.
Assumptions & free parameters
free parameters (4)
- lexical overlap thresholds =
0.4 and 0.6
- retry limit for rewriting =
3
- number of lexical overlap classes =
3
- most prominent biased feature per task =
the first feature in Appendix G
assumptions (5)
- domain assumption Predictive non-causal features (biased features) cause poor out-of-distribution generalization when their correlation with answers shifts.
- ad hoc to paper The answer distribution P(Y) should be uniform because there is no prior knowledge about Y.
- domain assumption CAL correctly identifies the biased features that matter for generalization.
- domain assumption LLM-based rewriting preserves causal content and changes only the targeted biased feature.
- standard math Sampling frequency approximates probability in the debiasing goal.
Cite this review
Pith. "Pith review of Information Gain-Guided Causal Intervention for Autonomous Debiasing Large Language Models." pith.science (2026). https://pith.science/paper/KBRIR3JW
@misc{pith2026250412898,
author = {Pith},
title = {Pith review of: Information Gain-Guided Causal Intervention for Autonomous Debiasing Large Language Models},
year = {2026},
howpublished = {\url{https://pith.science/paper/KBRIR3JW}},
note = {Machine review of arXiv:2504.12898}
}
read the original abstract
Despite significant progress, recent studies indicate that current large language models (LLMs) may still capture dataset biases and utilize them during inference, leading to the poor generalizability of LLMs. However, due to the diversity of dataset biases and the insufficient nature of bias suppression based on in-context learning, the effectiveness of previous prior knowledge-based debiasing methods and in-context learning based automatic debiasing methods is limited. To address these challenges, we explore the combination of causal mechanisms with information theory and propose an information gain-guided causal intervention debiasing (ICD) framework. To eliminate biases within the instruction-tuning dataset, it is essential to ensure that these biases do not provide any additional information to predict the answers, i.e., the information gain of these biases for predicting the answers needs to be 0. Under this guidance, this framework utilizes a causal intervention-based data rewriting method to automatically and autonomously balance the distribution of instruction-tuning dataset for reducing the information gain. Subsequently, it employs a standard supervised fine-tuning process to train LLMs on the debiased dataset. Experimental results show that ICD can effectively debias LLM to improve its generalizability across different tasks.
Figures
Forward citations
Cited by 1 Pith paper
-
EmoPerso: Enhancing Personality Detection with Self-Supervised Emotion-Aware Modelling
EmoPerso improves MBTI personality detection by training an emotion head on heuristic pseudo-labels and using cross-attention with reasoning chains, achieving 81.07% Macro-F1 on Kaggle and 68.60% on Pandora.
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]
A large annotated corpus for learning natural language inference
Samuel R Bowman, Gabor Angeli, Christopher Potts, and Christopher D Manning. A large annotated corpus for learning natural language inference. In Proceedings of the 2015 Confer- ence on Empirical Methods in Natural Language Processing. Association for Computational Linguistics, 2015
work page 2015
-
[3]
Fairflow: Mitigating dataset biases through undecided learning for natural language understanding
Jiali Cheng and Hadi Amiri. Fairflow: Mitigating dataset biases through undecided learning for natural language understanding. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pages 21960–21975, 2024
work page 2024
-
[4]
Information Theory: Coding Theorems for Discrete Memoryless Systems
Imre Csiszár and János Körner. Information Theory: Coding Theorems for Discrete Memoryless Systems. Cambridge University Press, 2015
work page 2015
-
[5]
Mitigate extrinsic social bias in pre-trained language models via continuous prompts adjustment
Yiwei Dai, Hengrui Gu, Ying Wang, and Xin Wang. Mitigate extrinsic social bias in pre-trained language models via continuous prompts adjustment. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pages 11068–11083, 2024
work page 2024
-
[6]
Automatically constructing a corpus of sentential para- phrases
William B Dolan and Chris Brockett. Automatically constructing a corpus of sentential para- phrases. In Proceedings of the Third International Workshop on Paraphrasing (IWP2005) , 2005
work page 2005
-
[7]
Towards stable natural language understanding via information entropy guided debiasing
Li Du, Xiao Ding, Zhouhao Sun, Ting Liu, Bing Qin, and Jingshuo Liu. Towards stable natural language understanding via information entropy guided debiasing. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages 2868–2882, 2023
work page 2023
-
[8]
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. The llama 3 herd of models. arXiv preprint arXiv:2407.21783, 2024
arXiv 2024
Show all 65 references
-
[9]
The capacity for moral self-correction in large language models
Deep Ganguli, Amanda Askell, Nicholas Schiefer, Thomas Liao, Kamil˙e Lukoši¯ut˙e, Anna Chen, Anna Goldie, Azalia Mirhoseini, Catherine Olsson, Danny Hernandez, et al. The capacity for moral self-correction in large language models. arXiv preprint arXiv:2302.07459, 2023
2023 arXiv
-
[10]
Measuring massive multitask language understanding
Dan Hendrycks, Collin Burns, Steven Basart, Andy Zou, Mantas Mazeika, Dawn Song, and Jacob Steinhardt. Measuring massive multitask language understanding. Proceedings of the International Conference on Learning Representations (ICLR), 2021
2021
-
[11]
LoRA: Low-rank adaptation of large language models
Edward J Hu, yelong shen, Phillip Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Shean Wang, Lu Wang, and Weizhu Chen. LoRA: Low-rank adaptation of large language models. In International Conference on Learning Representations, 2022
2022
-
[12]
Triviaqa: A large scale distantly supervised challenge dataset for reading comprehension
Mandar Joshi, Eunsol Choi, Daniel S Weld, and Luke Zettlemoyer. Triviaqa: A large scale distantly supervised challenge dataset for reading comprehension. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages ...
2017
-
[13]
A survey on popularity bias in recommender systems
Anastasiia Klimashevskaia, Dietmar Jannach, Mehdi Elahi, and Christoph Trattner. A survey on popularity bias in recommender systems. User Modeling and User-Adapted Interaction, 34 (5):1777–1834, 2024
2024
-
[14]
Identifying and mitigating annotation bias in natural language under- standing using causal mediation analysis
Sitiporn Sae Lim, Can Udomcharoenchaikit, Peerat Limkonchotiwat, Ekapol Chuangsuwanich, and Sarana Nutanong. Identifying and mitigating annotation bias in natural language under- standing using causal mediation analysis. In Findings of the Association for Computational Linguis...
2024
-
[15]
Truthfulqa: Measuring how models mimic human falsehoods
Stephanie Lin, Jacob Hilton, and Owain Evans. Truthfulqa: Measuring how models mimic human falsehoods. In Proceedings of the 60th Annual Meeting of the Association for Computa- tional Linguistics (Volume 1: Long Papers), pages 3214–3252, 2022
2022
-
[16]
Trustworthy llms: a survey and guideline for evaluating large language models’ alignment
Yang Liu, Yuanshun Yao, Jean-Francois Ton, Xiaoying Zhang, Ruocheng Guo, Hao Cheng, Yegor Klochkov, Muhammad Faaiz Taufiq, and Hang Li. Trustworthy llms: a survey and guideline for evaluating large language models’ alignment. In Socially Responsible Language Modelling Research, 2023
2023
-
[17]
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 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 8036–8046. IEEE, 2022
2022
-
[18]
Feature-level debiased natural language understanding
Yougang Lyu, Piji Li, Yechang Yang, Maarten de Rijke, Pengjie Ren, Yukun Zhao, Dawei Yin, and Zhaochun Ren. Feature-level debiased natural language understanding. In Proceedings of the AAAI Conference on Artificial Intelligence, volume 37, pages 13353–13361, 2023
2023
-
[19]
Learning word vectors for sentiment analysis
Andrew Maas, Raymond E Daly, Peter T Pham, Dan Huang, Andrew Y Ng, and Christopher Potts. Learning word vectors for sentiment analysis. In Proceedings of the 49th annual meeting of the association for computational linguistics: Human language technologies, pages 142–150, 2011
2011
-
[20]
Right for the wrong reasons: Diagnosing syntactic heuristics in natural language inference
Tom McCoy, Ellie Pavlick, and Tal Linzen. Right for the wrong reasons: Diagnosing syntactic heuristics in natural language inference. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pages 3428–3448, 2019
2019
-
[21]
Effect of negation in sentences on sentiment analysis and polarity detection
Partha Mukherjee, Youakim Badr, Shreyesh Doppalapudi, Satish M Srinivasan, Raghvinder S Sangwan, and Rahul Sharma. Effect of negation in sentences on sentiment analysis and polarity detection. Procedia Computer Science, 185:370–379, 2021
2021
-
[22]
Biases in large language models: Origins, inventory and discussion
Roberto Navigli, Simone Conia, and Björn Ross. Biases in large language models: Origins, inventory and discussion. ACM Journal of Data and Information Quality, 2023
2023
-
[23]
Adversarial nli: A new benchmark for natural language understanding
Yixin Nie, Adina Williams, Emily Dinan, Mohit Bansal, Jason Weston, and Douwe Kiela. Adversarial nli: A new benchmark for natural language understanding. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pages 4885–4901, 2020
2020
-
[24]
In-contextual bias suppression for large language models
Daisuke Oba, Masahiro Kaneko, and Danushka Bollegala. In-contextual bias suppression for large language models. arXiv preprint arXiv:2309.07251, 2023
2023 arXiv
-
[25]
Causality
Judea Pearl. Causality. Cambridge university press, 2009
2009
-
[26]
Hypothesis only baselines in natural language inference
Adam Poliak, Jason Naradowsky, Aparajita Haldar, Rachel Rudinger, and Benjamin Van Durme. Hypothesis only baselines in natural language inference. In Proceedings of the Seventh Joint Conference on Lexical and Computational Semantics, pages 180–191, 2018
2018
-
[27]
Squad: 100,000+ questions for machine comprehension of text
P Rajpurkar. Squad: 100,000+ questions for machine comprehension of text. arXiv preprint arXiv:1606.05250, 2016
2016 arXiv
-
[28]
Know what you don’t know: Unanswerable ques- tions for squad
Pranav Rajpurkar, Robin Jia, and Percy Liang. Know what you don’t know: Unanswerable ques- tions for squad. In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), pages 784–789, 2018. 11
2018
-
[29]
Learning from others’ mistakes: Avoiding dataset biases without modeling them
Victor Sanh, Thomas Wolf, Yonatan Belinkov, and Alexander M Rush. Learning from others’ mistakes: Avoiding dataset biases without modeling them. In International Conference on Learning Representations, 2020
2020
-
[30]
Self-diagnosis and self-debiasing: A proposal for reducing corpus-based bias in nlp
Timo Schick, Sahana Udupa, and Hinrich Schütze. Self-diagnosis and self-debiasing: A proposal for reducing corpus-based bias in nlp. Transactions of the Association for Computational Linguistics, 9:1408–1424, 2021
2021
-
[31]
Towards debiasing fact verification models
Tal Schuster, Darsh Shah, Yun Jie Serene Yeo, Daniel Roberto Filizzola Ortiz, Enrico Santus, and Regina Barzilay. Towards debiasing fact verification models. In Proceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joi...
2019
-
[32]
Natural language understand- ing with the quora question pairs dataset
Lakshay Sharma, Laura Graesser, Nikita Nangia, and Utku Evci. Natural language understand- ing with the quora question pairs dataset. arXiv preprint arXiv:1907.01041, 2019
1907 arXiv
-
[33]
Recursive deep models for semantic compositionality over a sentiment treebank
Richard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Christopher D Manning, Andrew Y Ng, and Christopher Potts. Recursive deep models for semantic compositionality over a sentiment treebank. In Proceedings of the 2013 conference on empirical methods in natural language proce...
2013
-
[34]
Bias in news summarization: Measures, pitfalls and corpora
Julius Steen and Katja Markert. Bias in news summarization: Measures, pitfalls and corpora. In Findings of the Association for Computational Linguistics ACL 2024, pages 5962–5983, 2024
2024
-
[35]
Causal-guided active learning for debiasing large language models
Zhouhao Sun, Li Du, Xiao Ding, Yixuan Ma, Yang Zhao, Kaitao Qiu, Ting Liu, and Bing Qin. Causal-guided active learning for debiasing large language models. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , page...
2024
-
[36]
Challenging big-bench tasks and whether chain-of-thought can solve them
Mirac Suzgun, Nathan Scales, Nathanael Schärli, Sebastian Gehrmann, Yi Tay, Hyung Won Chung, Aakanksha Chowdhery, Quoc Le, Ed Chi, Denny Zhou, et al. Challenging big-bench tasks and whether chain-of-thought can solve them. In Findings of the Association for Compu- tational Lin...
2023
-
[37]
Generalized preference optimization: A unified approach to offline alignment
Yunhao Tang, Zhaohan Daniel Guo, Zeyu Zheng, Daniele Calandriello, Remi Munos, Mark Rowland, Pierre Harvey Richemond, Michal Valko, Bernardo Avila Pires, and Bilal Piot. Generalized preference optimization: A unified approach to offline alignment. In Forty-first International ...
2024
-
[38]
Gemma 2: Improving open language models at a practical size
Gemma Team, Morgane Riviere, Shreya Pathak, Pier Giuseppe Sessa, Cassidy Hardin, Surya Bhupatiraju, Léonard Hussenot, Thomas Mesnard, Bobak Shahriari, Alexandre Ramé, et al. Gemma 2: Improving open language models at a practical size. arXiv preprint arXiv:2408.00118, 2024
2024 arXiv
-
[39]
Llama 2: Open foundation and fine-tuned chat models
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288, 2023
2023 arXiv
-
[40]
Mind the trade-off: Debiasing nlu models without degrading the in-distribution performance
Prasetya Ajie Utama, Nafise Sadat Moosavi, and Iryna Gurevych. Mind the trade-off: Debiasing nlu models without degrading the in-distribution performance. In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pages 8717–8729, 2020
2020
-
[41]
Towards debiasing nlu models from unknown biases
Prasetya Ajie Utama, Nafise Sadat Moosavi, and Iryna Gurevych. Towards debiasing nlu models from unknown biases. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 7597–7610, 2020
2020
-
[42]
Click-conversion multi-task model with position bias mitigation for sponsored search in ecommerce
Yibo Wang, Yanbing Xue, Bo Liu, Musen Wen, Wenting Zhao, Stephen Guo, and Philip S Yu. Click-conversion multi-task model with position bias mitigation for sponsored search in ecommerce. In Proceedings of the 46th International ACM SIGIR Conference on Research and Development i...
2023
-
[43]
Finetuned language models are zero-shot learners
Jason Wei, Maarten Bosma, Vincent Zhao, Kelvin Guu, Adams Wei Yu, Brian Lester, Nan Du, Andrew M Dai, and Quoc V Le. Finetuned language models are zero-shot learners. In International Conference on Learning Representations, 2022. 12
2022
-
[44]
A broad-coverage challenge corpus for sentence understanding through inference
Adina Williams, Nikita Nangia, and Samuel R Bowman. A broad-coverage challenge corpus for sentence understanding through inference. In NAACL-HLT, 2018
2018
-
[45]
Counterfactual debiasing for fact verification
Weizhi Xu, Qiang Liu, Shu Wu, and Liang Wang. Counterfactual debiasing for fact verification. In Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 6777–6789, 2023
2023
-
[46]
Mitigating biases for instruction-following language models via bias neurons elimination
Nakyeong Yang, Taegwan Kang, Stanley Jungkyu Choi, Honglak Lee, and Kyomin Jung. Mitigating biases for instruction-following language models via bias neurons elimination. In Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long...
2024
-
[47]
Razor: Sharpening knowledge by cutting bias with unsupervised text rewriting
Shuo Yang, Bardh Prenkaj, and Gjergji Kasneci. Razor: Sharpening knowledge by cutting bias with unsupervised text rewriting. In Proceedings of the AAAI Conference on Artificial Intelligence, 2025
2025
-
[48]
Paws: Paraphrase adversaries from word scrambling
Yuan Zhang, Jason Baldridge, and Luheng He. Paws: Paraphrase adversaries from word scrambling. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), p...
2019
-
[49]
Lima: Less is more for alignment
Chunting Zhou, Pengfei Liu, Puxin Xu, Srinivasan Iyer, Jiao Sun, Yuning Mao, Xuezhe Ma, Avia Efrat, Ping Yu, Lili Yu, et al. Lima: Less is more for alignment. Advances in Neural Information Processing Systems, 36, 2024. A Limitations Although our method can automatically debia...
2024
-
[50]
• The abstract and/or introduction should clearly state the claims made, including the contributions made in the paper and important assumptions and limitations
Claims Question: Do the main claims made in the abstract and introduction accurately reflect the paper’s contributions and scope? Answer: [Yes] Justification: The main claims can be supported by the experiments Guidelines: • The answer NA means that the abstract and introducti...
-
[51]
Limitations
Limitations Question: Does the paper discuss the limitations of the work performed by the authors? Answer: [Yes] Justification: We provide the limitations of this work in Appendix A. Guidelines: • The answer NA means that the paper has no limitation while the answer No means t...
-
[52]
Guidelines: • The answer NA means that the paper does not include theoretical results
Theory assumptions and proofs Question: For each theoretical result, does the paper provide the full set of assumptions and a complete (and correct) proof? Answer: [Yes] 16 Justification: We provide the full set of assumptions and a complete proof in Appendix B and Section 3.2...
-
[53]
We also submit the code and data in the supplemental material
Experimental result reproducibility Question: Does the paper fully disclose all the information needed to reproduce the main ex- perimental results of the paper to the extent that it affects the main claims and/or conclusions of the paper (regardless of whether the code and da...
-
[54]
Guidelines: • The answer NA means that paper does not include experiments requiring code
Open access to data and code 17 Question: Does the paper provide open access to the data and code, with sufficient instruc- tions to faithfully reproduce the main experimental results, as described in supplemental material? Answer: [Yes] Justification: We have provided the the...
-
[55]
Some other details such as the biased features and prompts for data rewriting are provided in appendix and supplemental material
Experimental setting/details Question: Does the paper specify all the training and test details (e.g., data splits, hyper- parameters, how they were chosen, type of optimizer, etc.) necessary to understand the results? Answer: [Yes] Justification: We have provided the training...
-
[56]
Guidelines: • The answer NA means that the paper does not include experiments
Experiment statistical significance Question: Does the paper report error bars suitably and correctly defined or other appropriate information about the statistical significance of the experiments? Answer: [Yes] Justification: We have reported the standard deviation across 3 r...
-
[57]
Guidelines: • The answer NA means that the paper does not include experiments
Experiments compute resources Question: For each experiment, does the paper provide sufficient information on the com- puter resources (type of compute workers, memory, time of execution) needed to reproduce the experiments? Answer: [Yes] Justification: We have provided the co...
-
[58]
We also follow the licenses when using publicly available datasets
Code of ethics Question: Does the research conducted in the paper conform, in every respect, with the NeurIPS Code of Ethics https://neurips.cc/public/EthicsGuidelines? Answer: [Yes] Justification: Our research does not involve human subjects or participants. We also follow th...
-
[59]
Guidelines: • The answer NA means that there is no societal impact of the work performed
Broader impacts Question: Does the paper discuss both potential positive societal impacts and negative societal impacts of the work performed? Answer: [NA] Justification: We focus on the generalization abilities of LLMs, which is a foundational research and does not concentrat...
-
[60]
Guidelines: • The answer NA means that the paper poses no such risks
Safeguards Question: Does the paper describe safeguards that have been put in place for responsible release of data or models that have a high risk for misuse (e.g., pretrained language models, image generators, or scraped datasets)? Answer: [NA] Justification: We use publicly...
-
[61]
We also follow the the license and terms of use of corresponding LLMs and data
Licenses for existing assets Question: Are the creators or original owners of assets (e.g., code, data, models), used in the paper, properly credited and are the license and terms of use explicitly mentioned and properly respected? Answer: [Yes] Justification: We cite every re...
-
[62]
Guidelines: • The answer NA means that the paper does not release new assets
New assets Question: Are new assets introduced in the paper well documented and is the documentation provided alongside the assets? Answer: [Yes] Justification: We provide the code to create the debiased dataset and debiased LLMs in the supplemental material. Guidelines: • The...
-
[63]
Guidelines: • The answer NA means that the paper does not involve crowdsourcing nor research with human subjects
Crowdsourcing and research with human subjects Question: For crowdsourcing experiments and research with human subjects, does the paper include the full text of instructions given to participants and screenshots, if applicable, as well as details about compensation (if any)? A...
-
[64]
• Depending on the country in which research is conducted, IRB approval (or equivalent) may be required for any human subjects research
Institutional review board (IRB) approvals or equivalent for research with human subjects Question: Does the paper describe potential risks incurred by study participants, whether such risks were disclosed to the subjects, and whether Institutional Review Board (IRB) approvals...
-
[65]
Answer: [NA] Justification: We use LLM for writing and editing
Declaration of LLM usage Question: Does the paper describe the usage of LLMs if it is an important, original, or non-standard component of the core methods in this research? Note that if the LLM is used only for writing, editing, or formatting purposes and does not impact the ...
2025
Reviewed August 16, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.