- Paper: Debiasing Large Language Models via Adaptive Causal Prompting with Sketch-of-Thought (OpenReview: https://openreview.net/forum?id=SdTSZ5GfV0)
- Authors: Bowen Li, Ziqi Xu, Jing Ren, Renqiang Luo, Xikun Zhang, Xiuzhen Zhang, Yongli Ren, Feng Xia
- Venue: EACL 2026 Findings · Published: 04 Jan 2026 · Last modified: 04 Jan 2026
- Keywords: Large Language Models, Reasoning, Prompting, Causality
- Licenses: MIT (code) · CC BY 4.0 (paper)
ACPS adaptively routes between standard and conditional front-door adjustments and uses concise Sketch-of-Thought mediators to deliver robust, token-efficient reasoning across diverse tasks.
acps/— Task-specific ACPS notebooks (CommonsenseQA, FEVER, HotpotQA, GSM8K, Math, StrategyQA, MusiQue).acps.ipynb— End-to-end ACPS pipeline (routing, mediator construction, evaluation).helpers/— Sketch-of-Thought utilities, encoder fine-tuning, prompt templates, metrics collection.sots_datasets/— Builders for Sketch-of-Thought datasets per benchmark.efficiency_comparison/— Efficiency experiments and analysis.robustness_study/— Robustness evaluations on shuffled and injected datasets.img/— Figures for documentation and the project page.requirements.txt— Full dependency list (matches Kaggle Python 3.11.13 environment).CITATION.cff— Citation metadata.
- Verified in a Kaggle
Python 3.11.13GPU container. The dependency list is heavy; trim it if you only need specific notebooks. - Quickstart:
- Open a Kaggle notebook (GPU recommended) and set Python 3.11.13.
- Install dependencies:
pip install -r requirements.txt(or install selectively for the target notebook). - Run
acps.ipynbfor the full pipeline, or a task notebook underacps/for a specific benchmark. - Use
sots_datasets/notebooks to regenerate Sketch-of-Thought mediators; userobustness_study/andefficiency_comparison/for robustness and efficiency analyses.
- Outputs are notebook-driven; no standalone Python package is provided yet.
Use CITATION.cff or the BibTeX below.
@inproceedings{li2026acps,
title = {Debiasing Large Language Models via Adaptive Causal Prompting with Sketch-of-Thought},
author = {Bowen Li and Ziqi Xu and Jing Ren and Renqiang Luo and Xikun Zhang and Xiuzhen Zhang and Yongli Ren and Feng Xia},
booktitle = {Findings of the Association for Computational Linguistics: EACL 2026},
year = {2026},
month = {January},
note = {OpenReview id: SdTSZ5GfV0}
}MIT License for code; paper content under CC BY 4.0.
