CoolFace
Modelpublic

mariklolik228/sus-qwen2.5-1.5b-grpo-lora

sourceHugging Faceapache-2.0updated 6mo agoView on Hugging Face
0likes25downloads
Model Card

SuS-GRPO LoRA — Qwen2.5-1.5B-Instruct

LoRA adapter fine-tuned with SuS (Strategy-aware Surprise) + GRPO for math reasoning on GSM8K.

Method

SuS adds a semantic novelty bonus to correct responses in mixed-correctness batches, encouraging diverse problem-solving strategies. Zero-variance batches (all-correct or all-incorrect) are left untouched — this prevents KL divergence blowup and length collapse.

Training Configuration

ParameterValue
LoRA rank (r)64
LoRA alpha128
Training steps2,000
Learning rate5e-6
Batch size8
KL coefficient0.001
SS bonus (β)0.1
DatasetGSM8K

Results on GSM8K

MetricScore
Pass@175.27%
Pass@594.03%
Pass@897.63%

95% CI (Pass@1): [73.49, 77.05]

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel

base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen2.5-1.5B-Instruct", torch_dtype="auto", device_map="auto")
model = PeftModel.from_pretrained(base, "mariklolik228/sus-qwen2.5-1.5b-grpo-lora")
tokenizer = AutoTokenizer.from_pretrained("mariklolik228/sus-qwen2.5-1.5b-grpo-lora")

Links

Citation

bibtex
@article{kashirskiy2026sus,
  title={SuS: Strategy-aware Surprise for Intrinsic Exploration in GRPO},
  author={Kashirskiy, Mark and Makarov, Ilya},
  journal={arXiv preprint arXiv:2601.10349},
  year={2026}
}