Pith. sign in

REVIEW 3 major objections 5 minor 1 cited by

Detection, Classification, and Mitigation of Gender Bias in Large Language Models

T0 review · 3 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash

Pith's one-line read A single pipeline built on chain-of-thought reasoning and direct preference optimization claims first place in all three subtasks of the NLPCC 2025 Chinese gender-bias shared task.

desk verdict A competent NLPCC shared-task system paper that wins all three subtasks on validation but overstates support: test scores are missing and Subtask 3's BLEU metric doesn't measure debiasing. read the letter →

arxiv 2506.12527 v1 pith:AHGFFBBU submitted 2025-06-14 cs.CL

classification cs.CL
keywords genderbiaslargelanguagemodelschain-of-thoughtreasoningdirectpreferenceoptimizationChinesegender-biascorpusmitigationclassificationsharedtask
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper claims that one integrated recipe wins all three subtasks of the NLPCC 2025 Chinese gender-bias shared task: supervised fine-tuning plus chain-of-thought reasoning for detection and classification, and direct preference optimization (DPO) over GPT-4-generated preference pairs for rewriting biased sentences. The detection and classification design works by forcing the model through a fixed reasoning sequence: name the social group and the attribute attached to it, judge whether that attribute is a stereotype when attributed to the group, then decide whether the sentence endorses or merely mentions the biased implication. The rewriting design works by training the model to prefer the human-corrected reference sentence over GPT-4's counterfactual rewrites, which are deliberately constructed to keep the bias or distort the meaning. If the reported validation scores and claimed competition rankings hold, the concrete consequence is that this configuration is currently the best system on this benchmark, and that task-specific preference data construction contributes more than the optimization method alone.

What carries the argument

The argument runs on two mechanisms. First, the chain-of-thought template for Subtasks 1 and 2: the model is required to output (1) the social group and the attribute attached to it, (2) whether that group–attribute pairing is itself a biased claim, and (3) an agreement analysis deciding whether the sentence endorses the biased implication or merely reports it, with the final label read off step 3. This staged format is what lets a sentence like "women earn less" be flagged for mentioning a stereotype while a sentence that explicitly opposes that claim is classified as unbiased. Second, the DPO debiasing objective $\mathcal{L}_{\mathrm{DPO}}(\pi;\pi_{\mathrm{ref}}) = -\mathbb{E}_{(x,y_w,y_l)\sim D}\log\sigma\big(\beta\log\tfrac{\pi(y_w|x)}{\pi_{\mathrm{ref}}(y_w|x)} - \beta\log\tfrac{\pi(y_l|x)}{\pi_{\mathrm{ref}}(y_l|x)}\big)$, trained on a preference dataset in which GPT-4 produces the dispreferred completions (counterfactual rewrites that keep the bias or distort the meaning) and the human-edited training sentences are the preferred completions, with the KL reference term holding the policy near the base model. A supporting component is data expansion: a random sample of the CORGI-PM corpus is folded into the official training data, and the ablation shows that removing it degrades all three scores.

What would settle it

Take the system's Subtask 3 outputs on the official test set and have human annotators judge each rewrite for residual gender bias and meaning preservation; if BLEU-aligned rewrites still carry stereotyping, or if the competition's official test-set rankings do not reproduce the reported first-place results, the central claims fail.

Watch

Extended reading notes

Core claim

The central claim, stated on the paper's own terms, is that combining chain-of-thought-guided supervised fine-tuning with preference-based optimization achieves state-of-the-art performance on all three subtasks of the NLPCC 2025 Shared Task 7 — binary gender-bias detection (validation F1 0.87), three-class bias classification (validation macro-F1 0.68), and bias-mitigating rewriting (validation BLEU 0.286) — and that the resulting system ranked first in every subtask and overall in the competition. The paper's analysis attributes the gains to two design choices: the staged chain-of-thought prompt that separates bias mention from bias endorsement, and the GPT-4-constructed preference dataset whose task-relevant counterfactuals teach the DPO loss the intended contrast, in contrast to the generic BiasDPO dataset, which underperforms on this task. The claim that matters is comparative: this configuration beat every baseline the authors ran, and it won the shared task.

Load-bearing premise

The claim that the rewriting subtask genuinely removes gender bias rests on BLEU, a metric that measures n-gram overlap with reference sentences rather than whether a stereotype survives in the rewritten output.

Editorial extensions

If this is right

  • The staged chain-of-thought format ties the Subtask 1 label to whether the sentence endorses the biased claim rather than merely mentioning it, so a sentence that reports a stereotype while opposing it can still be classified as unbiased.
  • Task-specific preference data carries the mitigation gain: both the paper's DPO model and the BiasDPO baseline use direct preference optimization, but the GPT-4-constructed counterfactual pairs score higher on the rewriting subtask.
  • Every component contributes: removing the external CORGI-PM data, the chain-of-thought prompting, or the reinforcement-learning stage each lowers the corresponding validation score.
  • The recipe transfers across base models: Qwen2.5-3B and Baichuan2-13B both improve over their zero-shot baselines on all three tasks, though the largest absolute scores come from Qwen2.5-7B.
  • The error analysis points to a concrete next target: descriptive and inferential stereotypes (DI) account for the largest share of classification errors, suggesting the model struggles most with implicit, context-dependent bias.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • Because Subtask 3 is scored with BLEU, the leaderboard measures surface overlap with reference rewrites, not whether stereotyping was removed; a human-annotation pass over the outputs is the natural test, and it would also reveal whether meaning preservation and debiasing trade off against each other.
  • The first-place claim is a competition result: validation scores are shown, but the official test-set scores that determine the ranking are not, so the headline should be read against the shared task's published leaderboard rather than the paper alone.
  • The mention-versus-endorsement distinction trained into Subtask 1 is a transferable idea for adjacent tasks such as hate-speech detection, stance detection, and misinformation labeling, which face the same ambiguity between quoting a view and holding it.
  • The pipeline is in principle bias- and language-agnostic, but the preference-pair construction is bespoke: each new bias type or language would need its own GPT-4 prompting scheme and reference corpus, and the paper does not estimate that cost.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 5 minor

Summary. The manuscript describes a system submitted to NLPCC 2025 Shared Task 7, addressing three Chinese gender-bias tasks: detection (binary), classification (multi-label), and mitigation (sentence rewriting). For detection and classification, the authors use supervised fine-tuning plus chain-of-thought prompting with staged reasoning. For mitigation, they construct preference pairs using GPT-4-generated counterfactual rewrites as dispreferred responses and human-edited references as preferred responses, then train a DPO model. Validation-set results in Table 3 show the proposed system outperforming zero-shot, SFT, reward-guided, BiasDPO, and ablation baselines on all three subtasks. The abstract and conclusion state that the approach ranked first across all three subtasks and achieves state-of-the-art performance.

Significance. If the reported ranking is accurate, this is a useful systems contribution to an active evaluation benchmark, and the paper provides a reasonably detailed recipe combining CoT and DPO within a single framework. The manuscript is honest about the components: the CoT design for Subtasks 1 and 2 is clearly specified, the DPO loss is standard and correctly written, and the ablations isolate data expansion, CoT, and RL contributions. The main scientific weakness is that the Subtask 3 result, which anchors the overall SOTA claim, is evaluated only with BLEU, a metric that does not measure gender-bias mitigation. The paper also does not show the competition test scores that back the 'ranked first' claim, and it reports no significance tests or variance estimates on 200-sample sets. These issues limit the strength of the central claim, but they are addressable with additional evaluation and reporting.

major comments (3)
  1. [Section 4.1, Table 3] The Subtask 3 claim of bias mitigation rests entirely on BLEU, which measures n-gram overlap with reference rewrites and is agnostic to whether gender bias was actually removed. A model could achieve high BLEU by imitating the reference distribution without reducing bias on novel inputs. The paper should report bias-specific metrics (e.g., classifier-based bias scores or human evaluation) or at least explicitly reframe the Subtask 3 contribution as reference-faithful rewriting rather than demonstrated debiasing.
  2. [Abstract and Conclusion] The abstract and conclusion claim the system 'ranked first across all three subtasks' and achieved 'state-of-the-art performance', but the test-set scores from the competition are never reported. The only quantitative evidence is Table 3 on validation sets of 200 samples per task, with no error bars or significance tests. The authors should include the official test results or clearly delineate that the ranking is based on withheld competition scores and temper the SOTA claim accordingly.
  3. [Section 3.2] The preference dataset construction uses GPT-4-generated counterfactual sentences as dispreferred responses without any human verification. The paper does not assess whether these generated rewrites are actually biased, natural, or representative of the kinds of biased outputs the model should avoid. This is load-bearing for the DPO training signal; the authors should add a quality analysis (e.g., human or automated checks of a sample) and discuss potential biases in the synthetic preference pairs.
minor comments (5)
  1. [Section 2.1, 2.2] The text contains the typos 'four categorizes' and 'three major categorizes'; these should be 'categories'.
  2. [Section 4.2 and Table 3] The baseline name is inconsistently written as 'ARGS' in the table and 'ARGs' or 'reward-guided generation' in the text. Please unify the terminology.
  3. [References] Reference [2], cited for 'Meta-LLaMA3-8B-Instruct', points to a paper on phishing detection by Alsariera et al., which does not describe Llama 3. Please correct the citation or the cited work.
  4. [Section 4.1, Eq. (3)] The phrase 'Class-wise metrics for classiare defined as' contains a typo ('classiare'); it should be 'Class-wise metrics for class i are defined as'.
  5. [General] The paper does not state whether code or data will be released; adding a reproducibility statement would strengthen the contribution.

Circularity Check

0 steps flagged · score 0.0 of 10

No circularity found: the central results are validated against held-out official data and the only self-citation is non-load-bearing.

full rationale

The derivation chain is self-contained. For Subtasks 1 and 2, the method is standard supervised fine-tuning plus chain-of-thought prompting; the prompt structure is attributed to the external BiasGuard system (reference [16]), not to the current authors' own prior work, and performance is measured by F1 on official held-out validation and test data. For Subtask 3, the paper uses the standard DPO loss in Eq. (1) with preference pairs constructed as follows: the preferred response is the human-edited version from the official training set and the dispreferred response is a GPT-4-generated counterfactual. Evaluation uses BLEU against official held-out references. Because the training preference pairs come from the training split and the BLEU references come from the validation/test split, the reported improvement is not forced by construction: the model must generalize to unseen sentences. The only self-citation by the current authors is reference [11] (BiasFilter), cited in the introduction among prior rewriting approaches; it is used only as related work and does not supply any formal premise, fitted constant, uniqueness theorem, or evaluation target. The abstract's claim of ranking first is a competition outcome, and the absence of published test-set scores is an evidence gap rather than a circular reduction. Likewise, the concern that BLEU may not measure gender-bias removal is a construct-validity criticism, not a demonstration that any prediction is equivalent to its input. No circular step can be exhibited with the paper's own equations.

Assumptions & free parameters 2 free parameters · 3 assumptions · 0 invented entities

No new entities are introduced. The system relies on external models (Qwen2.5, GPT-4) and datasets, plus two unreported hyperparameters (DPO beta, CORGI-PM sampling proportion). The main unstated premises are that the shared task labels are trustworthy, GPT-4-generated contrastive pairs are valid without human checks, and BLEU captures debiasing quality.

free parameters (2)
  • DPO beta (beta) = not reported
    Beta controls the divergence from the reference policy in Eq. (1); the value is chosen by hand and not reported.
  • CORGI-PM sampling proportion = not reported
    The paper randomly samples 'a portion' of CORGI-PM to expand training data; the exact proportion is unspecified and affects results.
assumptions (3)
  • domain assumption Shared task definitions of the three gender bias types (AC, DI, ANB) are treated as ground truth.
    Sections 2 and 3 accept the organizer-provided bias type definitions without validating their quality or consistency.
  • domain assumption GPT-4-generated biased counterfactuals are valid dispreferred pairs without human verification.
    Section 3.2 Dataset: GPT-4 produces the dispreferred responses; no human check is reported.
  • ad hoc to paper BLEU is treated as a sufficient measure of bias mitigation.
    Section 4.1 Task 3 uses BLEU only, which measures n-gram overlap, not the actual reduction of gender bias.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Detection, Classification, and Mitigation of Gender Bias in Large Language Models." pith.science (2026). https://pith.science/paper/AHGFFBBU

@misc{pith2026250612527,
  author       = {Pith},
  title        = {Pith review of: Detection, Classification, and Mitigation of Gender Bias in Large Language Models},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/AHGFFBBU}},
  note         = {Machine review of arXiv:2506.12527}
}
read the original abstract

With the rapid development of large language models (LLMs), they have significantly improved efficiency across a wide range of domains. However, recent studies have revealed that LLMs often exhibit gender bias, leading to serious social implications. Detecting, classifying, and mitigating gender bias in LLMs has therefore become a critical research focus. In the NLPCC 2025 Shared Task 7: Chinese Corpus for Gender Bias Detection, Classification and Mitigation Challenge, we investigate how to enhance the capabilities of LLMs in gender bias detection, classification, and mitigation. We adopt reinforcement learning, chain-of-thoughts (CoT) reasoning, and supervised fine-tuning to handle different Subtasks. Specifically, for Subtasks 1 and 2, we leverage the internal reasoning capabilities of LLMs to guide multi-step thinking in a staged manner, which simplifies complex biased queries and improves response accuracy. For Subtask 3, we employ a reinforcement learning-based approach, annotating a preference dataset using GPT-4. We then apply Direct Preference Optimization (DPO) to mitigate gender bias by introducing a loss function that explicitly favors less biased completions over biased ones. Our approach ranked first across all three subtasks of the NLPCC 2025 Shared Task 7.

Figures

Figures reproduced from arXiv: 2506.12527 by the authors.

Figure 1
Figure 1. The overall framework for bias detection, classification, and mitigation. 3.1 Chain-of-Thought Reasoning Task1: Bias Detection. For Subtask 1, we randomly sample a portion of the CORGI-PM dataset [34] and combine it with the official training data provided by the organizers to construct the raw dataset for fine-tuning the large language model. Following [16], during training and inference, we instruct the model to r… view at source ↗

Discussion (0). Sign in to comment.

Forward citations

Cited by 1 Pith paper

Reviewed papers in the Pith corpus that reference this work. Sorted by Pith novelty score. Full citation record

  1. A Comprehensive Survey on Trustworthiness in Reasoning with Large Language Models

    cs.CL 2025-09 conditional novelty 4.0 of 10

    A structured literature survey concluding that reasoning capabilities do not automatically make LLMs more trustworthy and can introduce new vulnerabilities in safety, robustness, and privacy.

Reference graph

Works this paper leans on

35 extracted references · 12 canonical work pages · cited by 1 Pith paper

  1. [1]

    arXiv preprint arXiv:2407.13928 (2024) Detection, Classification, and Mitigation of Gender Bias 11

    Allam, A.: Biasdpo: Mitigating bias in language models through direct preference optimization. arXiv preprint arXiv:2407.13928 (2024) Detection, Classification, and Mitigation of Gender Bias 11

  2. [2]

    IEEE access8, 142532–142542 (2020)

    Alsariera, Y.A., Adeyemo, V.E., Balogun, A.O., Alazzawi, A.K.: Ai meta-learners and extra-trees algorithm for the detection of phishing websites. IEEE access8, 142532–142542 (2020)

  3. [3]

    Artery Research26(Suppl 1), S5–S6 (2020)

    Arias, D.C., De Buyzere, M.L., Chirinos, J.A., Rietzschel, E.R., Segers, P.: Yi 1.5 ten years of ageing in the middle-aged does not increase input impedance or wave reflection—insights from the asklepios study. Artery Research26(Suppl 1), S5–S6 (2020)

  4. [4]

    In: Proceedings of the AAAI Conference on Artificial Intelligence

    Banerjee, P., Java, A., Jandial, S., Shahid, S., Furniturewala, S., Krishnamurthy, B., Bhatia, S.: All should be equal in the eyes of lms: Counterfactually aware fair text generation. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 38, pp. 17673–17681 (2024)

  5. [5]

    arXiv preprint arXiv:2503.04240 (2025)

    Chen, R., Chai, W., Yang, Z., Zhang, X., Zhou, J.T., Quek, T., Poria, S., Liu, Z.: Diffpo: Diffusion-styled preference optimization for efficient inference-time align- ment of large language models. arXiv preprint arXiv:2503.04240 (2025)

  6. [6]

    arXiv preprint arXiv:2405.10989 (2024)

    Chen, R., Hu, T., Feng, Y., Liu, Z.: Learnable privacy neurons localization in language models. arXiv preprint arXiv:2405.10989 (2024)

  7. [7]

    In: Findings of the Associa- tion for Computational Linguistics: NAACL 2025

    Chen, R., Li, Y., Yang, J., Feng, Y., Zhou, J.T., Wu, J., Liu, Z.: Identifying and mitigating social bias knowledge in language models. In: Findings of the Associa- tion for Computational Linguistics: NAACL 2025. pp. 651–672 (2025)

  8. [8]

    Advances in Neural Information Processing Systems36, 14516–14539 (2023)

    Chen, R., Yang, J., Xiong, H., Bai, J., Hu, T., Hao, J., Feng, Y., Zhou, J.T., Wu, J., Liu, Z.: Fast model debias with machine unlearning. Advances in Neural Information Processing Systems36, 14516–14539 (2023)

Show all 35 references
  1. [9]

    arXiv preprint arXiv:2410.04070 (2024)

    Chen, R., Zhang, X., Luo, M., Chai, W., Liu, Z.: Pad: Personalized alignment of llms at decoding-time. arXiv preprint arXiv:2410.04070 (2024)

  2. [10]

    arXiv preprint arXiv:2404.10160 (2024)

    Cheng, R., Ma, H., Cao, S., Shi, T.: Rlrf: Reinforcement learning from reflec- tion through debates as feedback for bias mitigation in llms. arXiv preprint arXiv:2404.10160 (2024)

  3. [11]

    arXiv preprint arXiv:2505.23829 (2025)

    Cheng, X., Chen, R., Zan, H., Jia, Y., Peng, M.: Biasfilter: An inference-time debiasing framework for large language models. arXiv preprint arXiv:2505.23829 (2025)

  4. [12]

    In: Proceedings of the 33rd ACM International Conference on Information and Knowledge Management

    Doan, T.V., Wang, Z., Hoang, N.N.M., Zhang, W.: Fairness in large language models in three hours. In: Proceedings of the 33rd ACM International Conference on Information and Knowledge Management. pp. 5514–5517 (2024)

  5. [13]

    arXiv preprint arXiv:2404.04167 (2024)

    Du, X., Yu, Z., Gao, S., Pan, D., Cheng, Y., Ma, Z., Yuan, R., Qu, X., Liu, J., Zheng, T., et al.: Chinese tiny llm: Pretraining a chinese-centric large language model. arXiv preprint arXiv:2404.04167 (2024)

  6. [14]

    arXiv preprint arXiv:2403.00811 (2024)

    Echterhoff, J., Liu, Y., Alessa, A., McAuley, J., He, Z.: Cognitive bias in decision- making with llms. arXiv preprint arXiv:2403.00811 (2024)

  7. [15]

    arXiv preprint arXiv:2410.19317 (2024)

    Fan, Z., Chen, R., Hu, T., Liu, Z.: Fairmt-bench: Benchmarking fairness for multi- turn dialogue in conversational llms. arXiv preprint arXiv:2410.19317 (2024)

  8. [16]

    arXiv preprint arXiv:2504.21299 (2025)

    Fan, Z., Chen, R., Liu, Z.: Biasguard: A reasoning-enhanced bias detection tool for large language models. arXiv preprint arXiv:2504.21299 (2025)

  9. [17]

    arXiv preprint arXiv:2407.10241 (2024)

    Fan, Z., Chen, R., Xu, R., Liu, Z.: Biasalert: A plug-and-play tool for social bias detection in llms. arXiv preprint arXiv:2407.10241 (2024)

  10. [18]

    Computational Linguistics50(3), 1097–1179 (2024)

    Gallegos, I.O., Rossi, R.A., Barrow, J., Tanjim, M.M., Kim, S., Dernoncourt, F., Yu, T., Zhang, R., Ahmed, N.K.: Bias and fairness in large language models: A survey. Computational Linguistics50(3), 1097–1179 (2024)

  11. [19]

    5-coder technical report

    Hui, B., Yang, J., Cui, Z., Yang, J., Liu, D., Zhang, L., Liu, T., Zhang, J., Yu, B., Lu, K., et al.: Qwen2. 5-coder technical report. arXiv preprint arXiv:2409.12186 (2024) 12 X. Cheng et al

  12. [20]

    Advances in neural information processing systems35, 22199–22213 (2022)

    Kojima, T., Gu, S.S., Reid, M., Matsuo, Y., Iwasawa, Y.: Large language models are zero-shot reasoners. Advances in neural information processing systems35, 22199–22213 (2022)

  13. [21]

    rlhf: Scaling reinforcement learning from human feedback with ai feedback

    Lee, H., Phatale, S., Mansoor, H., Mesnard, T., Ferret, J., Lu, K., Bishop, C., Hall, E., Carbune, V., Rastogi, A., et al.: Rlaif vs. rlhf: Scaling reinforcement learning from human feedback with ai feedback. arXiv preprint arXiv:2309.00267 (2023)

  14. [22]

    arXiv preprint arXiv:2501.11877 (2025)

    Li, Y., Wang, Z., Fu, T., Cui, G., Yang, S., Cheng, Y.: From drafts to answers: Un- locking llm potential via aggregation fine-tuning. arXiv preprint arXiv:2501.11877 (2025)

  15. [23]

    arXiv preprint arXiv:2504.14492 (2025)

    Li, Y., Fan, Z., Chen, R., Gai, X., Gong, L., Zhang, Y., Liu, Z.: Fairsteer: In- ference time debiasing for llms with dynamic activation steering. arXiv preprint arXiv:2504.14492 (2025)

  16. [24]

    arXiv preprint arXiv:2303.16634 (2023)

    Liu, Y., Iter, D., Xu, Y., Wang, S., Xu, R., Zhu, C.: G-eval: Nlg evaluation using gpt-4 with better human alignment. arXiv preprint arXiv:2303.16634 (2023)

  17. [25]

    CoRR (2024)

    Liu, Z., Chen, Z., Zhang, M., Ren, Z., Chen, Z., Ren, P.: Zero-shot position debi- asing for large language models. CoRR (2024)

  18. [26]

    Advances in neural information processing sys- tems35, 27730–27744 (2022)

    Ouyang, L., Wu, J., Jiang, X., Almeida, D., Wainwright, C., Mishkin, P., Zhang, C., Agarwal, S., Slama, K., Ray, A., et al.: Training language models to follow instructions with human feedback. Advances in neural information processing sys- tems35, 27730–27744 (2022)

  19. [27]

    arXiv preprint arXiv:2404.12358 (2024)

    Rafailov, R., Hejna, J., Park, R., Finn, C.: From r to qˆ*: Your language model is secretly a q-function. arXiv preprint arXiv:2404.12358 (2024)

  20. [28]

    Advances in Neural Information Processing Systems36, 53728–53741 (2023)

    Rafailov, R., Sharma, A., Mitchell, E., Manning, C.D., Ermon, S., Finn, C.: Direct preference optimization: Your language model is secretly a reward model. Advances in Neural Information Processing Systems36, 53728–53741 (2023)

  21. [29]

    arXiv e-prints pp

    Wang, A., Morgenstern, J., Dickerson, J.P.: Large language models cannot replace human participants because they cannot portray identity groups. arXiv e-prints pp. arXiv–2402 (2024)

  22. [30]

    Advances in Neural Information Process- ing Systems35, 35811–35824 (2022)

    Wang, B., Ping, W., Xiao, C., Xu, P., Patwary, M., Shoeybi, M., Li, B., Anand- kumar, A., Catanzaro, B.: Exploring the limits of domain-adaptive training for detoxifying large-scale language models. Advances in Neural Information Process- ing Systems35, 35811–35824 (2022)

  23. [31]

    Advances in neural information processing systems35, 24824–24837 (2022)

    Wei, J., Wang, X., Schuurmans, D., Bosma, M., Xia, F., Chi, E., Le, Q.V., Zhou, D., et al.: Chain-of-thought prompting elicits reasoning in large language models. Advances in neural information processing systems35, 24824–24837 (2022)

  24. [32]

    arXiv preprint arXiv:2309.10305 (2023)

    Yang, A., Xiao, B., Wang, B., Zhang, B., Bian, C., Yin, C., Lv, C., Pan, D., Wang, D., Yan, D., et al.: Baichuan 2: Open large-scale language models. arXiv preprint arXiv:2309.10305 (2023)

  25. [33]

    In: Proceedings of the AAAI Conference on Artificial Intelligence

    Zhang, C., Zhang, L., Wu, J., He, Y., Zhou, D.: Causal prompting: Debiasing large language model prompting based on front-door adjustment. In: Proceedings of the AAAI Conference on Artificial Intelligence. vol. 39, pp. 25842–25850 (2025)

  26. [34]

    Zhang, G., Li, Y., Wu, Y., Zhang, L., Lin, C., Geng, J., Wang, S., Fu, J.: Corgi-pm: A chinese corpus for gender bias probing and mitigation (2023), https://arxiv.org/abs/2301.00395

  27. [35]

    arXiv preprint arXiv:2504.12663 (2025)

    Zhang, X., Chen, R., Feng, Y., Liu, Z.: Persona-judge: Personalized align- ment of large language models via token-level self-judgment. arXiv preprint arXiv:2504.12663 (2025)

Pith tools

Reviewed August 7, 2026 · model on record in the stance chip above.