paper-with-me

Papers

Critique-Coder: Enhancing Coder Models by Critique Reinforcement Learning

2025-09-26 · Chi Ruan, Dongfu Jiang, Yubo Wang, Wenhu Chen arxiv

Reinforcement Learning (RL) has emerged as a popular training paradigm, particularly when paired with reasoning models. While effective, it primarily focuses on generating responses and lacks mechanisms to explicitly foster critique or reflection. Several recent studies, like Critique-Fine-Tuning (CFT) and Critique-Guided-Distillation (CGD) have shown the benefits of explicitly teaching LLMs how to critique. Motivated by them, we propose Critique Reinforcement Learning (CRL), where the model is tasked with generating a critique for a given (question, solution) pair. The reward is determined solely by whether the final judgment label $c \in \{\texttt{True}, \texttt{False}\}$ of the generated critique aligns with the ground-truth judgment $c^*$. Building on this point, we introduce Critique-Coder, which is trained on a hybrid of RL and CRL by substituting 20% of the standard RL data with CRL data. We fine-tune multiple models (Critique-Coder) and evaluate them on different benchmarks to show their advantages over RL-only models. We show that Critique-Coder consistently outperforms RL-only baselines on all the evaluated benchmarks. Notably, our Critique-Coder-8B can reach over 60% on LiveCodeBench (v5), outperforming other reasoning models like DeepCoder-14B and GPT-o1. Beyond code generation, Critique-Coder also demonstrates enhanced general reasoning abilities, as evidenced by its better performance on logic reasoning tasks from the BBEH dataset. This indicates that the application of CRL on coding datasets enhances general reasoning and critique abilities, which are transferable across a broad range of tasks. Hence, we believe that CRL works as a great complement to standard RL for LLM reasoning.

📄 PDF Abstract BibTeX arXiv:2509.22824

Code (0)

등록된 구현이 없습니다.

Tasks

Reinforcement LearningCode Generation

Similar Papers 제목 키워드 기반

RefineCoder: Iterative Improving of Large Language Models via Adaptive Critique Refinement for Code Generation

2025-02-13 · Changzhi Zhou, Xinyu Zhang, Dandan song, Xiancai Chen 외

Code generation has attracted increasing attention with the rise of Large Language Models (LLMs). Many studies have developed powerful code LLMs by synthesizing code-related instruction data and applying supervised fine-…

Code Generation

DeepCritic: Deliberate Critique with Large Language Models

2025-05-01 · Wenkai Yang, Jingwen Chen, Yankai Lin, Ji-Rong Wen

As Large Language Models (LLMs) are rapidly evolving, providing accurate feedback and scalable oversight on their outputs becomes an urgent and critical problem. Leveraging LLMs as critique models to achieve automated su…

Math

OpenCodeReasoning-II: A Simple Test Time Scaling Approach via Self-Critique

2025-07-11 · Wasi Uddin Ahmad, Somshubra Majumdar, Aleksander Ficek, Sean Narenthiran 외

Recent advancements in reasoning-based Large Language Models (LLMs), particularly their potential through test-time scaling, have created significant opportunities for distillation in code generation and critique. Howeve…

Code Generation

Training Language Models to Critique With Multi-agent Feedback

2024-10-20 · Tian Lan, Wenwei Zhang, Chengqi Lyu, Shuaibin Li 외

Critique ability, a meta-cognitive capability of humans, presents significant challenges for LLMs to improve. Recent works primarily rely on supervised fine-tuning (SFT) using critiques generated by a single LLM like GPT…

Reinforcement Learning (RL)

ICRL: Learning to Internalize Self-Critique with Reinforcement Learning

2026-05-13 · Jianbo Lin, Xiaomin Yu, Yi Xin, Yifu Guo 외 arxiv

Large language model-based agents make mistakes, yet critique can often guide the same model toward correct behavior. However, when critique is removed, the model may fail again on the same query, indicating that it has …

Reinforcement LearningMathematical Reasoning