Papers › Eliminating Inductive Bias in Reward Models with Information-Theoretic Guidance

Eliminating Inductive Bias in Reward Models with Information-Theoretic Guidance

29 Dec 2025ICLRarXiv:2512.23461added by Syntology

Zhuo Li, Pengyu Cheng, Zhechao Yu, Feifei Tong, Anningzhe Gao, Tsung-Hui Chang, Xiang Wan, Erchao Zhao, Xiaoxi Jiang, Guanjun Jiang

Title, abstract, authors and date from arXiv's metadata (CC0); this paper is not in the Papers with Code archive (frozen 2025-07-28).

Reward models (RMs) are essential in reinforcement learning from human feedback (RLHF) to align large language models (LLMs) with human values. However, RM training data is commonly recognized as low-quality, containing inductive biases that can easily lead to overfitting and reward hacking. For example, more detailed and comprehensive responses are usually human-preferred but with more words, leading response length to become one of the inevitable inductive biases. A limited number of prior RM debiasing approaches either target a single specific type of bias or model the problem with only simple linear correlations, \textit{e.g.}, Pearson coefficients. To mitigate more complex and diverse inductive biases in reward modeling, we introduce a novel information-theoretic debiasing method called \textbf{D}ebiasing via \textbf{I}nformation optimization for \textbf{R}M (DIR). Inspired by the information bottleneck (IB), we maximize the mutual information (MI) between RM scores and human preference pairs, while minimizing the MI between RM outputs and biased attributes of preference inputs. With theoretical justification from information theory, DIR can handle more sophisticated types of biases with non-linear correlations, broadly extending the real-world application scenarios for RM debiasing methods. In experiments, we verify the effectiveness of DIR with three types of inductive biases: \textit{response length}, \textit{sycophancy}, and \textit{format}. We discover that DIR not only effectively mitigates target inductive biases but also enhances RLHF performance across diverse benchmarks, yielding better generalization abilities. The code and training recipes are available at https://github.com/Qwen-Applications/DIR.

PaperPDFCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="2512.23461")

Code

Syntology Ran 0 of 17 code samples harvested from 1 repository linked to this paper; 17 have no recorded run.

By repository: found in paper text by Syntology: 17 samples from 1 repository, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

Qwen-Applications/DIR found in paper text by SyntologyApache-2.0 report

Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

17 samples harvested; 0 ran; 0 honoured the contract we drafted; 17 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

17unverified

Licence: 0 of the 17 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from Qwen-Applications/DIR. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

build_dataset Qwen-Applications/DIR/reward_models/load_datasets.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 47ee1e29f8388bb2 · report
build_dataset_SK Qwen-Applications/DIR/reward_models/load_datasets.py found in paper text by Syntology unverified Apache-2.0 (permissive) · d5c8de0d3609ddc2 · report
build_dataset_UF Qwen-Applications/DIR/reward_models/load_datasets.py found in paper text by Syntology unverified Apache-2.0 (permissive) · c7dd18f13397a20b · report
build_eval_dataset_biasbench Qwen-Applications/DIR/rm_eval/eval_biasbench.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 7b30b37de5cc56e7 · report
build_model Qwen-Applications/DIR/rm_eval/eval_biasbench.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 629048a34404782d · report
build_ood_eval_dataset Qwen-Applications/DIR/rm_eval/load_eval_datasets.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 33044ac6954b842b · report
build_unified_eval_dataset Qwen-Applications/DIR/rm_eval/load_eval_datasets.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 4075415e3c419aef · report
calculate_accuracy_by_domain Qwen-Applications/DIR/rm_eval/eval_biasbench.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 4014c6ad9f997c4a · report
compute_metrics Qwen-Applications/DIR/reward_models/utils.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 7710f1274273fc6c · report
get_trainable_weights Qwen-Applications/DIR/reward_models/utils.py found in paper text by Syntology unverified Apache-2.0 (permissive) · aed395f45af87c9c · report
is_lora_model Qwen-Applications/DIR/reward_models/utils.py found in paper text by Syntology unverified Apache-2.0 (permissive) · f8e7d855924e7e64 · report
load_eval_dataset Qwen-Applications/DIR/rm_eval/load_eval_datasets.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 6d8002bad0675e8b · report
load_responses Qwen-Applications/DIR/rm_eval/arean_hard/arean_evaluation.py found in paper text by Syntology unverified Apache-2.0 (permissive) · acb09d50429275fd · report
parse_judgment Qwen-Applications/DIR/rm_eval/arean_hard/arean_evaluation.py found in paper text by Syntology unverified Apache-2.0 (permissive) · be08a58ad66166a5 · report
post_process_HS3 Qwen-Applications/DIR/reward_models/debias_trainer_sycophancy.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 17922d5baec5883a · report
post_process_RBv1 Qwen-Applications/DIR/reward_models/debias_trainer_length.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 97f43d7c928e992e · report
post_process_RMBench Qwen-Applications/DIR/reward_models/debias_trainer_length.py found in paper text by Syntology unverified Apache-2.0 (permissive) · 66d572c3fb9e65bc · report

Results from the paper

The Papers with Code archive ends with its 2025-07-28 snapshot. This paper's arXiv identifier, 2512.23461, was issued in December 2025, after that date, so the archive has no leaderboard rows for it.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections