Dat1710/nexus-1.5b
Nexus-1.5B
<p align="center"> <img src="https://img.shields.io/badge/Base%20Model-Qwen2.5--Math--1.5B--Instruct-orange" /> <img src="https://img.shields.io/badge/Parameters-1.54B-blue" /> <img src="https://img.shields.io/badge/Method-LPRO-green" /> <img src="https://img.shields.io/badge/MATH--500-80.2-red" /> <img src="https://img.shields.io/badge/GSM8K-85.2-red" /> </p>
Nexus-1.5B is a 1.54-billion-parameter mathematical reasoning model developed by Neuriton, trained via Length-Penalized Reward Optimization (LPRO) — a novel reinforcement learning alignment method that improves both accuracy and response conciseness simultaneously.
Built on top of Qwen2.5-Math-1.5B-Instruct, Nexus-1.5B achieves 80.2 on MATH-500 and 85.2 on GSM8K (CoT), surpassing its base model by +4.4 points on MATH-500 while reducing average response length by 14%.
What is LPRO?
Standard GRPO (Group Relative Policy Optimization) suffers from two key problems:
- Length bias — short responses receive disproportionately large gradient signals, implicitly penalizing long correct derivations.
- Entropy collapse — symmetric probability-ratio clipping causes the policy to converge to a narrow set of solution patterns, limiting further improvement.
LPRO fixes both with three targeted modifications:
The final objective is:
$$\mathcal{J}{\text{LPRO}}(\theta) = \mathbb{E}\left[\frac{1}{\sum{i=1}^{G}|oi|} \sum{i=1}^{G}\sum{t=1}^{|oi|} \min\!\left(r{i,t}(\theta)\,\hat{A}{i,t},\ \text{clip}{\text{asym}}(r{i,t}(\theta))\,\hat{A}_{i,t}\right)\right]$$
Model Details
Benchmark Results
Chain-of-Thought (CoT)
Tool-Integrated Reasoning (TIR)
Ablation: Effect of Length Penalty (λ)
Key insight: At λ=0.1, accuracy and conciseness improve simultaneously. The length penalty acts as a de-noising regularizer — discouraging redundant steps rather than suppressing genuinely long derivations.
How to Use
from transformers import AutoModelForCausalLM, AutoTokenizer
model_name = "Dat1710/nexus-1.5b"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype="auto",
device_map="auto"
)
# Chain-of-Thought prompt
system_prompt = "Please reason step by step, and put your final answer within \\boxed{}."
messages = [
{"role": "system", "content": system_prompt},
{"role": "user", "content": "Find all functions f: ℝ⁺ → ℝ⁺ such that for each x ∈ ℝ⁺, there is exactly one y ∈ ℝ⁺ satisfying xf(y) + yf(x) ≤ 2."}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
generated_ids = model.generate(
**model_inputs,
max_new_tokens=2048,
temperature=0.7,
do_sample=True,
)
generated_ids = [
output_ids[len(input_ids):]
for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids)
]
response = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0]
print(response)Tool-Integrated Reasoning (TIR)
system_prompt = (
"Please integrate natural language reasoning with programs to solve the problem above, "
"and put your final answer within \\boxed{}."
)Evaluation Prompt Format
CoT (8-shot for GSM8K, 4-shot for MATH-500):
<|im_start|>system
Please reason step by step, and put your final answer within \boxed{}.<|im_end|>
<|im_start|>user
{problem}<|im_end|>
<|im_start|>assistantTIR (zero-shot):
<|im_start|>system
Please integrate natural language reasoning with programs to solve the problem above,
and put your final answer within \boxed{}.<|im_end|>
<|im_start|>user
{problem}<|im_end|>
<|im_start|>assistantTraining Details
Data Curation
Training problems are sourced from MATH-500 and filtered by difficulty using a learnable-zone criterion: a problem is retained if, among 8 sampled solutions from the base model, between 2 and 5 are correct. This yields 100 training problems that provide meaningful gradient signal — neither trivially easy nor intractably hard.
Training Procedure
- Group sampling: For each prompt, sample G=4 responses from the current policy.
- Reward computation: Rule-based binary reward (correctness via symbolic answer matching) + small format bonus (α=0.1) for well-formed
\boxed{}output. - Advantage computation: Compute length-penalized group z-score advantages.
- Policy update: Maximize LPRO objective for 4 epochs per iteration.
- Iterate: Set old policy ← new policy and repeat.
Reward Function
$$ri = \mathbf{1}[\hat{a}(oi) = a^*] + 0.1 \cdot \mathbf{1}[\text{format}(o_i)]$$
where $\hat{a}(o_i)$ is the extracted answer from the last \boxed{} expression, verified via symbolic equivalence.
Limitations
- Scale: Nexus-1.5B operates at 1.54B parameters. Hard olympiad problems (e.g., AIME) remain challenging for models at this scale.
- Language: Primarily optimized for English and Chinese mathematical text. Performance on other languages is not evaluated.
- Domain: Designed for mathematical reasoning. General language understanding or instruction-following tasks are outside the model's training distribution.
- TIR dependency: Tool-integrated reasoning requires a sandboxed Python interpreter at inference time.
Citation
If you use Nexus-1.5B in your research, please cite:
@techreport{neuriton2026nexus,
title = {Nexus-1.5B: Length-Penalized Reward Optimization for Robust Mathematical Reasoning},
author = {Neuriton Team},
institution = {Neuriton},
year = {2026},
month = {Summer},
note = {Technical Report}
}Acknowledgements
We thank the Qwen Team at Alibaba Group for open-sourcing the Qwen2.5-Math model family, and the authors of DAPO for the asymmetric clipping insight that is central to LPRO.
Developed by [Neuriton](https://neuriton.ai) · Summer 2026
