KnowRL-Nemotron-1.5B is a 1.5B-parameter math reasoning model trained with reinforcement learning (DAPO/GRPO) under
minimal-sufficient knowledge point (KP) guidance. It is fine-tuned from
nvidia/OpenMath-Nemotron-1.5B and achieves state-of-the-art results among 1.5B-scale models on competition-level math benchmarks.
Instead of injecting long solution hints or full reasoning templates, KnowRL decomposes guidance into atomic knowledge points (KPs) and identifies the minimal subset required to unlock reward learning — achieving more with less.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_name = "HasuerYu/KnowRL-Nemotron-1.5B"
4tokenizer = AutoTokenizer.from_pretrained(model_name)
5model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto")
6
7problem = "Find the sum of all positive integers n such that n^2 - 19n + 99 is a perfect square."
8prompt = f"{problem}\nPlease reason step by step, and put your final answer within \\boxed{{}}."
9
10messages = [{"role": "user", "content": prompt}]
11text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
12inputs = tokenizer(text, return_tensors="pt").to(model.device)
13
14outputs = model.generate(**inputs, max_new_tokens=32768, temperature=0.6, top_p=0.95)
15response = tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:], skip_special_tokens=True)
16print(response)
For best performance, prepend selected knowledge points as a hint section in the prompt:
1knowledge_points = [
2 "If n^2 - 19n + 99 = m^2, then (2n - 19)^2 - 4m^2 = -15.",
3]
4hint = "## Hint\n" + "\n".join(f"- {kp}" for kp in knowledge_points)
5prompt = f"{problem}\n{hint}\nPlease reason step by step, and put your final answer within \\boxed{{}}."
1vllm serve HasuerYu/KnowRL-Nemotron-1.5B \
2 --tensor-parallel-size 1 \
3 --max-model-len 32768 \
4 --trust-remote-code
1@misc{yu2026knowrlboostingllmreasoning,
2 title={KnowRL: Boosting LLM Reasoning via Reinforcement Learning with Minimal-Sufficient Knowledge Guidance},
3 author={Linhao Yu and Tianmeng Yang and Siyu Ding and Renren Jin and Naibin Gu and Xiangzhao Hao and Shuaiyi Nie and Deyi Xiong and Weichong Yin and Yu Sun and Hua Wu},
4 year={2026},
5 eprint={2604.12627},
6 archivePrefix={arXiv},
7 primaryClass={cs.AI},
8 url={https://arxiv.org/abs/2604.12627},
9}
This model is released under the
Apache 2.0 License.