---
title: Faithfulness-Aware Advantage Modulation
url: https://www.emergentmind.com/topics/faithfulness-aware-advantage-modulation
type: topic
---

# Faithfulness-Aware Advantage Modulation

Faithfulness-aware advantage modulation is a reinforcement learning (RL) strategy for large language models (LLMs) and small reasoning models (SRMs) that aims to improve the fidelity of step-by-step reasoning by selectively assigning policy-gradient credit based on the faithfulness of intermediate steps with respect to the required evidence set. By incorporating explicit verification and fine-grained reward shaping, these mechanisms address weaknesses of standard RL pipelines—most notably the reinforcement of overconfident or spurious intermediate reasoning that may lead to hallucinated answers. This approach has been instantiated in frameworks such as FaithRL, which combines geometric reward shaping with faithfulness-aware modulation of the policy advantage signal, and is supported by both theoretical guarantees and empirical advances in reducing hallucination rates while maintaining or improving correctness across reasoning benchmarks [2602.03507, 2602.05897].

## 1. Faithfulness-Maximization and RL Objective Formulation

The design of faithfulness-aware advantage modulation centers on explicitly maximizing the probability that the LLM's reasoning trajectory uses exactly the minimal evidence required for a given query. Let $\theta$ denote the policy parameters, $\pi_\theta$ the trajectory distribution, $q$ the query, and $E(q) \subset S$ its minimal evidence subset. The set of faithful trajectories is defined as

$$
S_f = \{ T : \text{usedKN}(T) = E(q) \}
$$

where $\text{usedKN}(T)$ is the set of knowledge items cited in trajectory $T$. The faithfulness maximization objective is

$$
J_F(\theta) \triangleq P_\theta(T \in S_f) = \mathbb{E}_{T\sim\pi_\theta}[1_{T\in S_f}]
$$

In practice, RL surrogates optimize a shaped reward $r_{\text{faith}}(T) = 1_{T\in S_f}$ via a policy-gradient algorithm (e.g., GRPO or PPO), grounding the learning objective directly in minimizing step-level hallucinations and maximizing the truthfulness-helpfulness score (THS) [2602.03507].

## 2. Geometric Reward Shaping and THS Alignment

Rather than relying solely on binary correctness rewards, geometric reward design introduces continuous rewards based on model baseline rates for correctness ($x_0=P(C)$) and hallucination ($y_0=P(H)$):

\[
R_{\text{geo}}(T) =
\begin{cases}
+ y_0, & T \in S_c \\
0, & T \in S_m \\
- x_0, & T \in S_h
\end{cases}
\]

where $S_c$, $S_m$, and $S_h$ denote the sets of correct, miss, and hallucinated trajectories, respectively. The gradient of the expected geometric reward aligns with the gradient of the THS metric, ensuring policy updates directly target truthful and helpful reasoning:

\[
\nabla_\theta \mathbb{E}[R_{\text{geo}}] \propto \nabla_\theta \text{THS}(\pi_\theta)
\]

This alignment is formally proven (Theorem 4.2) and ensures that reward optimization is tightly coupled to desirable model behavior [2602.03507].

## 3. Faithfulness-Aware Advantage Modulation Mechanism

The central innovation of faithfulness-aware advantage modulation is in its assignment of policy-gradient credit at the granularity of trajectory steps and tokens, conditioned on their faithfulness status. For each sampled trajectory $T_i$, step $s_j$, and token $t$, the modulation scalar is

\[
M_{i,t} =
\begin{cases}
(1-\alpha) V(s_j) + \alpha, & A_i > 0 \\
(1-\alpha)(1 - V(s_j)) + \alpha, & A_i \leq 0
\end{cases}
\]

with $V(s_j) \in \{0, 1\}$ indicating step faithfulness, $A_i$ the normalized group-relative advantage, and $\alpha \in [0,1)$ the faithfulness coefficient (strict filtering at $\alpha = 0$). The final per-token advantage is then

\[
A^f_{i,t} = M_{i,t} A_i 
\]

This mechanism ensures that positive RL updates accrue only to faithful reasoning steps, while negative updates concentrate on unfaithful steps. The full objective combines these token-wise advantages in a clipped importance-sampling objective:

\[
J_{\mathrm{FA}}(\theta) = \mathbb{E}_{q,\,T_1...T_N \sim \pi_{\theta_{\text{old}}}} \left[
\frac{1}{N} \sum_{i=1}^N \sum_{t=1}^{|T_i|} M_{i,t} \cdot \mathrm{CLIP}\left(\frac{\pi_\theta}{\pi_{\text{old}}}, A_i\right)
\right]
\]

As a result, the RL signal reinforces only those partial derivations grounded in the minimal required evidence, aligning learning directly with faithfulness maximization [2602.03507].

## 4. Step-Level Credit Assignment: Algorithmic Realization

FaithRL's training kernel can be summarized as follows:

1. **Trajectory Sampling:** For each query, sample $N$ trajectories from the current policy $\pi_{\text{old}}$ and decompose each into steps and tokens.
2. **Outcome Evaluation:** Compute outcome rewards $r_i = R_{\text{geo}}(T_i)$ for all trajectories using the current baseline rates.
3. **Advantage Calculation:** Normalize to obtain group-relative advantages $A_i$.
4. **Faithfulness Verification:** For each step $s_{i,j}$, evaluate $V(s_{i,j})=1$ if and only if only evidence from $E(q)$ is used.
5. **Modulation Scalar Assignment:** Compute $M_{i,t}$ for each token $t$ within $s_{i,j}$ according to the sign of $A_i$.
6. **Policy Update:** Aggregate per-token advantages $A^f_{i,t}=M_{i,t}A_i$ for policy-gradient computation and update $\theta$.

Empirical ablation confirms that the combination of geometric rewards and faithfulness-aware advantage modulation yields the best trade-off between answer correctness and hallucination suppression—e.g., on MuSiQue-Full with Qwen-2.5B, the THS increases from 22.5 (baseline) to 51.8 (full FaithRL), with simultaneous increases in correctness and reductions in hallucination [2602.03507].

## 5. Theoretical Guarantees: Avoiding Overconfidence Bias

Theoretical analysis establishes that, under strict filtering ($\alpha=0$), the FaithRL policy gradient collects positive updates only from trajectories that are both faithful and correct, and negative updates only from those that are both unfaithful and incorrect. This property eliminates two critical sources of standard RL bias:

- Reinforcement of spurious correct guesses (by withholding positive reward from unfaithful but correct chains)
- Penalization of valid but failed reasoning chains (by withholding negative reward from faithful but incorrect chains)

Consequently, policy updates are exactly aligned with maximizing the probability of faithful trajectories, thereby provably avoiding the overconfidence collapse (where $P(M) \to 0$) that afflicts outcome-only RL [2602.03507].

## 6. Empirical Performance and Generalization

Extensive evaluation demonstrates that faithfulness-aware advantage modulation robustly outperforms alternatives across a range of architectures and tasks. Representative results include:

| Model         | Baseline THS | +Geometric Reward | +FAAM Only | FaithRL (Full) |
|---------------|--------------|-------------------|------------|----------------|
| Qwen-2.5B     | 22.5         | 43.0              | 27.5       | 51.8           |

- In-domain, Llama-3.1-8B: FaithRL reduces hallucinations by ~4.7 points, raises correctness by ~1.6 points, for an average THS gain of +9.0 over baseline.
- Out-of-domain generalization (GSM8k): Correctness improves from 72.3% to 86.9%, hallucination drops from 26.5% to 12.2%, and the faithful-step ratio among correct samples rises from 72.7% to 79.5%.
- Only FaithRL steadily increases per-step faithfulness ratio during training (from ~0.51 to ~0.83 over 15k updates), whereas other RL baselines such as GRPO and TruthRL do not demonstrate this trend.

This comprehensive improvement is achieved without sacrificing correctness, indicating that optimizing explicit faithfulness at the intermediate step level substantially raises both the average fidelity and the floor of model performance [2602.03507].

## 7. Connections to Related Approaches

Faithfulness-aware advantage modulation extends the paradigm established in correctness-aware low-entropy segment–based advantage shaping (e.g., LESS [2512.00908]), which amplifies updates in stable reasoning segments by correctness overlap, and complements step-level reinforcement frameworks that combine explicit faithfulness rewards with implicit contrastive resampling strategies (e.g., FaithRL for small reasoning models [2602.05897]). While LESS uses segment entropy and correctness overlap, FaithRL’s faithfulness-aware modulation focuses on binary verification of evidence usage and geometric reward alignment with THS. Both strands share the principle of modulating the RL signal using fine-grained, correctness- or faithfulness-oriented criteria, but they differ in their operationalization of reasoning fidelity.

## References

- [2602.03507] "Learning to Reason Faithfully through Step-Level Faithfulness Maximization"
- [2512.00908] "Beyond High-Entropy Exploration: Correctness-Aware Low-Entropy Segment-Based Advantage Shaping for Reasoning LLMs"
- [2602.05897] "Stop Rewarding Hallucinated Steps: Faithfulness-Aware Step-Level Reinforcement Learning for Small Reasoning Models"

Source: https://www.emergentmind.com/topics/faithfulness-aware-advantage-modulation