Does RL Really Incentivize Reasoning Capacity Beyond the Base Model?
핵심: 현재 공개된 RLVR은 base model에 없던 reasoning boundary를 크게 확장한다기보다, base model이 이미 낮은 확률로 갖고 있던 정답 경로의 sampling efficiency를 높이는 효과에 가깝다는 주장이다.
Metadata
- Paper
- Does Reinforcement Learning Really Incentivize Reasoning Capacity in LLMs Beyond the Base Model?
- Authors
- Yang Yue, Zhiqi Chen, Rui Lu, Andrew Zhao, Zhaokai Wang, Yang Yue, Shiji Song, Gao Huang
- arXiv
- 2504.13837 · 2025
- Source material
- Teo's uploaded Korean study note:
rlvr_reasoning_capacity_paper_summary.md - Category
- RL for LLMs / Post-training · RLVR · Reasoning evaluation
- Keywords
- RLVR, GRPO, PPO, pass@1, pass@k, reasoning capacity, sampling efficiency, reasoning boundary, distillation, perplexity, coverage
Core question
Does RLVR create new reasoning ability?
DeepSeek-R1 이후 RLVR이 모델을 스스로 탐색하게 만들어 base model에 없던 reasoning 능력을 획득하게 한다는 해석이 많아졌다. 이 논문은 그 해석이 맞는지 직접 묻는다.
Mostly sampling efficiency, not necessarily boundary expansion
논문의 핵심 주장은 RLVR이 “모델이 몰랐던 것을 새로 알게 만든다”기보다 “원래 가끔 맞추던 정답 경로를 더 자주 샘플링하게 만든다”에 가깝다는 것이다.
pass@1 vs pass@k
이 논문을 읽을 때 가장 중요한 구분은 한 번 뽑았을 때 맞추는 능력과 여러 번 뽑으면 적어도 한 번 맞출 수 있는 잠재 coverage다.
| Metric | Meaning | Interpretation in this paper |
|---|---|---|
| pass@1 | 한 번 샘플링해서 맞출 확률 | 실사용 단일 응답 성능, sampling efficiency |
| pass@k | k개 샘플 중 하나라도 맞출 확률 | 모델 분포 안에 정답 경로가 존재하는지 보는 reasoning boundary proxy |
For independent samples with per-sample success probability p:
pass@k = 1 - (1 - p)^k
따라서 pass@1이 낮아도 pass@256이 높다면, 모델이 문제를 전혀 못 푸는 것이 아니라 정답 reasoning path의 확률이 낮을 뿐일 수 있다.
Key observations
- RLVR improves pass@1: RLVR model은 보통 base model보다 한 번 답하게 했을 때 더 잘 맞춘다.
- Large-k can favor the base model: k를 크게 늘리면 base model이 RLVR model을 따라잡거나 추월하는 경우가 있다.
- Distribution sharpens: RLVR 이후 problem-level accuracy가 1.0에 가까운 문제는 늘지만, 중간 accuracy 문제는 줄고 0인 문제가 늘 수 있다.
- RL-only solved problems are rare: RL model만 새롭게 푼 문제는 적고, base model을 더 많이 샘플링하면 풀리는 경우가 많다.
- Base PPL on RL outputs is often low: RL model output이 base model 입장에서도 자연스러운 경우가 많아, base distribution 안의 path를 강화했다는 해석과 맞는다.
Why RLVR can be bounded by the base prior
PPO, GRPO, DAPO, RLOO 같은 알고리즘은 세부 차이가 있지만, reasoning capacity 관점에서는 공통 구조를 가진다.
sample responses from current/base-derived policy
→ verify reward
→ increase log-prob of high-reward responses
→ decrease log-prob of low-reward responses
핵심 한계는 단순하다.
LLM의 action space는 token sequence 전체라서 가능한 reasoning trace 공간이 지수적으로 크다. 그래서 현재 RLVR은 pretrained base model prior가 제공하는 “이미 어느 정도 샘플링 가능한” path에 강하게 의존한다.
Distillation contrast
논문은 RLVR과 distillation을 구분한다. Distillation은 강한 teacher의 reasoning trace를 student에게 주입하므로, base model이 원래 잘 샘플링하지 못하던 reasoning pattern을 배울 가능성이 있다.
| Method | Main effect | Capacity interpretation |
|---|---|---|
| RLVR | Base prior 안의 high-reward path 확률 증가 | Sampling efficiency 개선에 가까움 |
| Distillation | Teacher reasoning trace를 student에게 주입 | Reasoning boundary 확장 가능성 |
Future directions suggested by the paper
- High-level abstraction search: token-level 탐색 대신 풀이 전략, program, proof structure, tool-use plan 같은 고수준 공간에서 탐색.
- Curriculum learning: reward가 거의 0인 어려운 문제로 바로 가기보다 쉬운 문제에서 non-zero reward를 확보하며 확장.
- Fine-grained credit assignment: outcome reward만 보지 않고 process reward, step verifier, proof checker, code trace feedback 사용.
- Multi-turn interaction: 한 번 답하고 끝나는 방식보다 test 실행, error 관찰, 수정, 재실행 같은 agentic loop로 더 풍부한 feedback 확보.
Questions to ask when reading RLVR papers
- pass@1만 보고 있는가, pass@k도 보고 있는가?
- RL model이 푼 문제를 base model도 large-k sampling으로 풀 수 있는가?
- RL-only로 새롭게 풀린 문제가 실제로 의미 있게 존재하는가?
- RL output이 base model에게 낮은 perplexity를 갖는가?
- Training이 진행될수록 coverage가 줄어들지는 않는가?
- Reward는 outcome-level인가, process-level인가?
- Exploration은 token-level인가, high-level plan/program-level인가?
- Distillation, search, tool use, curriculum이 포함되어 있는가?
Teo에게 남는 핵심 문장: RLVR improves sampling efficiency, not necessarily reasoning boundary.