HC-GRPO: Hint-Completion Policy Optimization
- HC-GRPO is a reinforcement learning stage in Table-R1 that optimizes residual reasoning by splitting chain-of-thought answers into hints and completions.
- It employs group-relative advantage normalization and multiple rollouts to provide dense feedback and mitigate reward sparsity in table question answering.
- Empirical findings show significant improvements in QA accuracy, demonstrating HC-GRPO's effectiveness in enhancing multimodal table understanding.
Hint-Completion Group Relative Policy Optimization (HC-GRPO) is a reinforcement learning (RL) stage within the Table-R1 framework designed to advance multimodal table understanding by delivering fine-grained, stepwise feedback for reasoning tasks. HC-GRPO focuses on policy optimization for completing partially solved chains-of-thought in table question answering, where the model is rewarded on residual reasoning steps following a hint. This method addresses key challenges of coarse reward structures and reward sparsity in RL training for complex table reasoning, yielding substantial empirical gains over conventional approaches (Kang et al., 21 Sep 2025).
1. Position of HC-GRPO in Table-R1 Framework
Table-R1 is a three-stage RL pipeline for multimodal table understanding comprised of:
- Warm-up (Supervised Finetuning, SFT): Initial supervised training to enhance baseline accuracy of perception and basic reasoning.
- Perception Alignment GRPO (PA-GRPO): RL stage leveraging continuous Tree-Edit-Distance Similarity (TEDS) rewards to align extracted table structures and contents.
- Hint-Completion GRPO (HC-GRPO): A stage that fine-tunes the model’s step-by-step reasoning by training on partial solution completions, extracting maximal benefit from fine-grained hint-completion pairs.
HC-GRPO precisely targets the latter part of chain-of-thought (CoT) solutions by splitting reasoning sequences into an initial “hint” and the “completion” steps to be learned. This zoomed-in approach increases reward density and focuses updates on reasoning, as opposed to answering only at the solution level.
2. Formal Objective and Optimization Procedure
The HC-GRPO objective builds on the Group Relative Policy Optimization formalism, making use of rolled-out completions and groupwise advantage normalization. Let:
- denote the table image and original question.
- is an expanded chain-of-thought solution.
- is the split index.
- , .
- is the hint-augmented question; is the residual completion target.
For each training tuple, rollouts are sampled from the current policy . Rewards are computed as: 0, where:
- 1 if model answer 2; 3 otherwise.
- 4 if reasoning is wrapped in 5think6…7 and answer in 8answer9…0; 1 otherwise.
Groupwise normalized advantage:
2
Optimized loss (clipped surrogate plus KL penalty):
3
where 4 and 5 is a frozen copy of the policy at HC-GRPO start. Typical hyperparameters are 6, 7.
3. Hint-Guided Question Mechanism
The hint-completion configuration is constructed as follows:
- Each ground-truth solution chain is expanded (if brief) using GPT-4o to produce a detailed stepwise chain of length 8.
- A random split index 9 (0) yields “hint” steps 1 and target “completion” steps 2.
- The hint is appended to the original question to form the input 3; the model is then required to output only the residual steps 4.
This decomposition ensures reward signals focus on the remaining reasoning rather than duplicating assessment of previously solved substeps.
4. Reward Design and Sparsity Mitigation
HC-GRPO overcomes reward sparsity and binary reward granularity by densely splitting solution chains into multiple hint-completion pairs per sample (up to three splits per CoT). While 5 and 6 are individually binary, residual step-level completions admit a higher likelihood of partial correctness in 7 parallel rollouts. This augments reward variance in 8, supports meaningful policy gradients, and results in a denser RL signal. Group-relative advantage normalization further amplifies reward differences, facilitating robust and stable learning.
5. Specialized Pseudocode for HC-GRPO
The HC-GRPO training loop is as follows:
2
6. Empirical Findings and Performance Impact
Empirical results highlight HC-GRPO's significance within Table-R1:
Key ablation effects:
| Dataset | Table-R1 | –HC-GRPO | Δ |
|---|---|---|---|
| Avg. QA_I | 51.4 % | 36.3 % | –19.7 |
| TabFact_I | 60.9 % | 45.8 % | –15.1 |
- Removal of HC-GRPO causes substantial reductions in final QA accuracy (−19.7 pp held-in QA, −15.1 pp TabFact).
- Training with standard GRPO at the solution level reaches only ~76.4 % TabMWP; using hint-completion splits and HC-GRPO raises accuracy to ~83.0 %.
Data density and parameter effects:
- Increasing hint-completion splits from 1 to 4 improves TabMWP accuracy from 81.5 % to 83.4 %.
- Raising 9 (rollout group size) from 2 to 6 shows diminishing returns (peak at ~83.5 % for 0=6); 1=4 is an effective trade-off.
- Convergence is rapid, with 2–3 epochs sufficient for HC-GRPO due to dense feedback and normalized advantages.
A plausible implication is that hint-based feedback with group-relative normalization effectively mitigates reward sparsity and initialization bottlenecks found in RL for table reasoning.
7. Significance Within Multimodal Table Understanding
HC-GRPO constitutes the definitive third stage of the Table-R1 pipeline, moving beyond standard RL approaches by reframing the learning task from solution-level to residual-step completion. This reconfiguration supplies fine-grained learning signals that alleviate sparsity and improve reasoning depth. Experimental validation demonstrates that HC-GRPO delivers outsized improvements in step-by-step table reasoning, driving Table-R1-trained models (e.g., Qwen2-VL-7B) to outperform larger specialized table models and approach state-of-the-art closed-source systems across multiple benchmarks. The architecture confirms that RL frameworks benefit by isolating and optimizing residual reasoning tasks in complex, structured information domains (Kang et al., 21 Sep 2025).