Search papers, labs, and topics across Lattice.
KnowRL addresses reward sparsity in RL fine-tuning for LLM reasoning by introducing a knowledge-guided approach that decomposes hints into atomic knowledge points (KPs) and uses Constrained Subset Search (CSS) to identify minimal-sufficient subsets for training. To handle KP dependencies, KnowRL optimizes for robust subset curation, mitigating the pruning interaction paradox where removing individual KPs can be beneficial, but removing multiple can be detrimental. Experiments on a 1.5B parameter model across eight reasoning benchmarks demonstrate that KnowRL outperforms existing RL and hinting methods, achieving a new state-of-the-art accuracy of 74.16% with selected KPs at inference.
Forget brute-force hinting: KnowRL distills knowledge into atomic units, then uses subset selection to find the *least* amount of guidance needed to supercharge LLM reasoning.
RLVR improves reasoning in large language models, but its effectiveness is often limited by severe reward sparsity on hard problems. Recent hint-based RL methods mitigate sparsity by injecting partial solutions or abstract templates, yet they typically scale guidance by adding more tokens, which introduce redundancy, inconsistency, and extra training overhead. We propose \textbf{KnowRL} (Knowledge-Guided Reinforcement Learning), an RL training framework that treats hint design as a minimal-sufficient guidance problem. During RL training, KnowRL decomposes guidance into atomic knowledge points (KPs) and uses Constrained Subset Search (CSS) to construct compact, interaction-aware subsets for training. We further identify a pruning interaction paradox -- removing one KP may help while removing multiple such KPs can hurt -- and explicitly optimize for robust subset curation under this dependency structure. We train KnowRL-Nemotron-1.5B from OpenMath-Nemotron-1.5B. Across eight reasoning benchmarks at the 1.5B scale, KnowRL-Nemotron-1.5B consistently outperforms strong RL and hinting baselines. Without KP hints at inference, KnowRL-Nemotron-1.5B reaches 70.08 average accuracy, already surpassing Nemotron-1.5B by +9.63 points; with selected KPs, performance improves to 74.16, establishing a new state of the art at this scale. The model, curated training data, and code are publicly available at https://github.com/Hasuer/KnowRL.