CoolFace
Modelpublic

AdarshSingh7647/Eklav-9B-Math

sourceHugging Faceupdated 20d agoView on Hugging Face
0likes2.1kdownloads
Model Card

Eklav-9B-Math

Eklav trains a model to pick up a teacher's reasoning mid thought rather than imitate it end to end. The student sees a partial reasoning trace from the teacher, with the answer revealing tail removed, and learns to continue reasoning and produce the answer on its own. The model's own reasoning is conditioned on the teacher's partial trace during training rather than trained to reproduce it word for word. Same base model, same training data as standard full trace CoT distillation, only the training objective changes.

Highlights

  • -0.7% average pass@1 across 6 math benchmarks vs. standard full trace CoT SFT, same base model and training data (MMLU excluded, general knowledge check not a math benchmark)

Model details

Base modelzai-org/GLM-Z1-9B-0414
TaskMath reasoning
Training methodEklav (hint conditioned SFT)
FormatMerged bf16 checkpoint

Results

Pass@1 (%), single evaluation run per benchmark.

BenchmarkAIME 2025AIME 1983-2024GPQA-DiamondGSM8KMATH-500Omni-MATHMMLU
CotGen35.259.349.895.591.239.881.0
Eklav29.060.749.195.392.541.681.0

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "AdarshSingh7647/Eklav-9B-Math"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype="auto", device_map="auto")