← Back to Paper List

RLSR: Reinforcement Learning with Supervised Reward Outperforms SFT in Instruction Following

Zhichao Wang, Andy Wong, Ruslan Belkin
Inflection AI
arXiv (2025)
RL Reasoning Benchmark

📝 Paper Summary

Instruction Tuning Reinforcement Learning
RLSR replaces token-level supervised fine-tuning with reinforcement learning, using semantic similarity to human-labeled responses as a reward to significantly improve a model's instruction-following capabilities.
Core Problem
Supervised Fine-Tuning (SFT) forces models to exactly replicate human responses token-by-token, limiting their ability to explore alternative phrasing and often confining them to suboptimal local optima.
Why it matters:
  • Token-level supervision severely restricts the exploratory capacity needed for robust generalization in large language models
  • Existing reinforcement learning alternatives (like RLHF) require complex, expensive reward models or are limited to domains with verifiable answers (like math)
Concrete Example: When fine-tuned with standard SFT, a model must predict the exact next token from the human dataset. If the model generates a semantically perfect but differently phrased response, SFT penalizes it, whereas RLSR correctly rewards the semantic match.
Key Novelty
Reinforcement Learning with Supervised Reward (RLSR)
  • The model generates multiple candidate responses for a given prompt to encourage exploration
  • A pre-trained embedding model evaluates each candidate by measuring its cosine similarity to the human-labeled target response
  • This semantic similarity score acts as the reward signal for reinforcement learning, bypassing the need for token-by-token matching
Evaluation Highlights
  • RLSR using SentenceBERT achieves a 26.34% AlpacaEval win rate on Qwen-7B, surpassing standard SFT's 21.01%
  • Combining SFT with RLSR yields the strongest performance, reaching a 30.73% AlpacaEval win rate on Qwen-7B
Breakthrough Assessment
7/10
Provides a highly practical, compute-efficient bridge between SFT and RLHF by repurposing existing datasets via semantic rewards, though heavily dependent on the chosen embedding model's quality.
×