Views
No views yet
| Metric | Baseline | This Model | Δ |
|---|---|---|---|
| ARC-Easy | 54.12% | 57.28% | +3.16pp 🏆 |
| GSM8K | 0.38% | 2.35% | +1.97pp (6.2×) 🏆 |
| PIQA (norm) | 66.92% | 67.14% | +0.22pp 🏆 |
| ARC-Challenge (norm) | 27.73% | 29.18% | +1.45pp |
| HellaSwag (norm) | 42.99% | 42.95% | -0.04pp (preserved) |
| BoolQ | 43.39% | 38.99% | -4.40pp (alignment tax) |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("lldois/SmolLM2-135M-Reasoning-exp146")
4tokenizer = AutoTokenizer.from_pretrained("lldois/SmolLM2-135M-Reasoning-exp146")
5
6messages = [{"role": "user", "content": "What is 25 + 37?"}]
7input_text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
8inputs = tokenizer(input_text, return_tensors="pt")
9outputs = model.generate(**inputs, max_new_tokens=512)
10print(tokenizer.decode(outputs[0], skip_special_tokens=True))