Causal Prompting: Debiasing Large Language Model Prompting based on Front-Door Adjustment
Congzhi Zhang, Linhai Zhang, Jialong Wu, Yulan He, Deyu Zhou
TL;DR
The paper introduces Causal Prompting, a prompting paradigm that debiases LLM outputs by leveraging front-door adjustment within a structural causal model. It decomposes the causal effect of the input prompt $X$ on the final answer $A$ into two parts via a chain-of-thought mediator $R$, estimating $P(r|do(X))$ through CoT-based clustering and $P(A|do(r))$ via NWGM-assisted in-context learning, then combining them to obtain $P(A|do(X))$. Contrastive learning aligns the encoder's representation with the LLM's chain-of-thought, improving causal effect estimation. Empirical results across seven NLP tasks and multiple backbones (open- and closed-source) show consistent improvements, particularly in math reasoning and multi-hop QA, and robustness to adversarial data. The approach enables test-time debiasing without accessing LLM logits and suggests scalable extensions to safety and alignment applications.
Abstract
Despite the notable advancements of existing prompting methods, such as In-Context Learning and Chain-of-Thought for Large Language Models (LLMs), they still face challenges related to various biases. Traditional debiasing methods primarily focus on the model training stage, including approaches based on data augmentation and reweighting, yet they struggle with the complex biases inherent in LLMs. To address such limitations, the causal relationship behind the prompting methods is uncovered using a structural causal model, and a novel causal prompting method based on front-door adjustment is proposed to effectively mitigate LLMs biases. In specific, causal intervention is achieved by designing the prompts without accessing the parameters and logits of LLMs. The chain-of-thought generated by LLM is employed as the mediator variable and the causal effect between input prompts and output answers is calculated through front-door adjustment to mitigate model biases. Moreover, to accurately represent the chain-of-thoughts and estimate the causal effects, contrastive learning is used to fine-tune the encoder of chain-of-thought by aligning its space with that of the LLM. Experimental results show that the proposed causal prompting approach achieves excellent performance across seven natural language processing datasets on both open-source and closed-source LLMs.
