PaperHub
4.3
/10
withdrawn3 位审稿人
最低3最高5标准差0.9
5
3
5
4.0
置信度
正确性2.0
贡献度2.7
表达3.0
ICLR 2025

Efficient LLM Alignment via Hierarchical Coarse-to-Fine Refinement

OpenReviewPDF
提交: 2024-09-27更新: 2024-12-02
TL;DR

We introduce a novel decoding-time alignment method that modifies the decoding distribution at both the prompt and response levels, enhancing decoding efficiency and reducing ineffective exploration.

摘要

Alignment of Large Language Models (LLMs) intends to make LLMs behave to satisfy human preferences and values. Widely used methods, $e.g.$, Reinforcement Learning from Human Feedback (RLHF), usually involve the additional training of LLMs with a reward model or the dataset reflecting human preferences. However, these training-based methods cannot quickly adapt to different preferences. Recent methods leverage search during the decoding process to align LLMs with preferences. However, these methods ignore the influence of prompts on the decoding distribution, thus hindering the performance. In this work, we propose $ \textbf{HCFR}$, a $H$ierarchical $C$oarse-to-$F$ine $\text{R}$efinement for efficient LLM alignment. Specifically, $\textbf{HCFR}$ includes a two-stage refinement: i) $coarse refinement$ which rephrases the prompts from users through self-refinement, and ii) $fine refinement$ which leverages the search methods, $e.g.$, Monte Carlo Tree Search (MCTS), for the responses with the guidance of a pre-trained reward model. Experimental results on HH-RLHF and UltraChat demonstrate that $\textbf{HCFR}$ can significantly outperform existing methods, $e.g.$, ARGS, CARDS, and Rejection sampling, in terms of performance and efficiency, $i.e.$, achieving a 71.3% win-tie rate in GPT-4 evaluations while reducing time consumption by 42%.
关键词
AlignmentLarge language models

评审与讨论

审稿意见
5

This paper works on decoding time alignment. The proposed method is a two-stage approach. In the first stage, the responses undergo a rephrasing according to user-specified prompt. In the second stage, decoding time search is used. Experiments conducted on two tasks are used to demonstrate the effectiveness of the proposed method, comparisons are made against other decoding-time alignment baselines.

优点

The presentation of the paper is good. The illustrative figures, algorithm, related tables are helpful in guiding readers. Experiment visualizations are clear.

缺点

The necessity of the two-stage method is not highlighed enough. Hence those stages are somewhat isolated to each other.

The method is not compared with fine-tuning / prompting-based methods. Although this work focuses on decoding-time alignment, it would be useful for readers to understand the pros and cons of the proposed method by having comparisons to alternative approaches. To be specific, what would the training effort differences (e.g., the reward model and value model training in decoding and the reward models in fine tuning approaches), what are the computational resources needed? Noted that I'm not expecting one method to be better than the other all the time, but a more comprehensive understanding of multiple aspects of different methos would be helpful.

The idea and format of having Table 1 is great, but the current version is not clear enough why those properties are necessary. Further explaination could enhance the clarity.

问题

Can the authors explain why the two-stage method is needed? And what is the benefit of the proposed method in merging those stages as compared to existing approaches?

Why do the authors report win-and-tie as the evaluation metric? This metric can be very misleading if the tie-rate is higher than half of the win-tie-rates.

Learning accurate reward/value function is essential for effective MCTS, could the authors explain more on their efforts about how robust is their method to different reward models? (ideally, one will need precise token-level reward models such that the search can be correctly guided). In practice, how challenge is it to generate such reward model or value estimators in MCTS?

What is the exploration strategy in the MCTS implementation? How do the authors banlance between limited searching budget and the performance? Could the authors show the scalability ablation study on the MCTS step? Ideally, when the number of explorative nodes increases, we could see the performance gain ("inference time scaling law" as a fancy name) across different searching budgets.

审稿意见
3

The authors introduce a Hierarchical Coarse-to-Fine Refinement (HCFR), a decoding-time alignment method for Large Language Models (LLMs) that integrates both the prompt and response into a structured, efficient alignment process. HCFR operates in two stages.

Coarse Refinement: this rephrases the user's input prompt into a structured goal, refining the decoding distribution at a high level.

Fine Refinement that leverages the MCTS method to refine the complete response segments further while assessing their reward scores and iteratively selecting optimal segments until a full response is generated.

The authors claim that this hierarchical framework improves alignment accuracy and efficiency by balancing computational cost with performance.

优点

The problem addressed in this paper is both exciting and novel. The analysis appears sound, and the proofs seem correct at first glance. However, I have some questions I would like to clarify, as highlighted below.

缺点

Though the paper addresses a good problem, it still lacks some details, and I would like to see more clarity in the revised versions.

Terms like 'efficient', 'balanced,' and 'refined' are somewhat vague and could be more specific. For instance, mentioning how HCFR improves efficiency quantitatively or qualitatively would provide a clearer picture of its impact.

The contributions seem marginal, modifying the decoding distribution p(yx)p(y|x) for both prompt xx and response yy, given that this process is well-studied for the response.

问题

  1. In terms of practical implementation, HCFR still struggles to handle large-scale problems. I would like to see a comparison with methods where prompt optimization is performed separately, and refinement occurs solely at the response level.

  2. In line 222, you reference xrefx_{\text{ref}}​ and mention that the expectation is taken over these reference prompts. However, it’s unclear how this reference prompt, xrefx_{\text{ref}}​, is obtained.

  3. It seems that HCFR uses the instruction prompt I to generate xrefx_{\text{ref}}​, which resembles the concept of a "meta prompt" commonly discussed in prompt optimization literature. Could you clarify why prompt-level HCFR is necessary in this context?

  4. Equation 5 is presented at a very high level. I would ike to see the proportionality constants used here.

审稿意见
5
  • This paper introduces HCFR, a hierarchical method for improving decoding time alignment with human preferences.

  • HCRF works in 2 stages:

    • Coarse refinement: Refines the prompt to be more precise and includes necessary context.
    • Fine refinement: MCTS during decoding to generate a more optimal final response as measured by the reward model.
  • Coarse and fine alignments are decoupled i.e. coarse alignment is done first, and the aligned prompts are used for the finer alignment.

  • HCRF is much more efficient and required 42% less time compared to other baselines and qualitatively improves upon the SOTA decoding time alignment methods.

优点

  • The approach is novel and explores a novel approach for decoding time alignment -- prompt refinement.
  • It is more efficient and results in responses that are more aligned as measured by the chosen RM.
  • The method's performance is customizable -- it improves with increased computational budget and changes as the RM weights are modified.
  • Both coarse and fine refinement seem to be complementary, yet distinct in their role.

缺点

  • In general, experimental details are sparse. For example, there is very little information about the reward model used and it is central to the effectiveness of this method. It is unclear how the choice of the RM affects the effectiveness of this method.
  • The authors also don't mention the size of the Llama 3 model used and it’s not clear how this method would work for larger or smaller models.
  • It's unclear at what point increasing the number of prompts for coarse refinement yields diminishing returns, and whether potential gains from the combined coarse and fine refinement are limited by either stage.

问题

Mentioned in the weaknesses.

撤稿通知

I have read and agree with the venue's withdrawal policy on behalf of myself and my co-authors.