Views
No views yet
| Field | Value |
|---|---|
| Base model | Qwen/Qwen2.5-Math-7B |
| Adaptation | LoRA adapters, rank 64 on linear layers |
| Training algorithm | GRPO |
| Variant label | A_2000 |
| Loss mode | none / GRPO-only |
Auxiliary weight alpha | 0.0 |
| Expert pool / data | No auxiliary expert pool used in the loss. |
| Training steps | 2,000 RL optimizer steps |
| Evaluation prompt path | base-model cot-4shot |
| W&B run id | xqboonlw |
| W&B project | lavida-mvm |
psi = [h_start || h_end || h_mean || delta_H] in R^14336 for LaViDA variants.256 for auxiliary branches.| Metric | Value |
|---|---|
Greedy overall (T=0) | 76.2% |
n=8 mean correctness (T=0.6) | 74.88% |
| pass@8 | 75.8% |
| L4-5 pass@8 | 63.74% |
| Level-5 pass@8 | 52.24% |
Pritish92/lavida-variant-A-seed0-a-2000Pritish92/lavida-variant-B-seed0-oracleaug-alpha0p2Pritish92/lavida-variant-D-seed0-oracleaug-alpha0p001Pritish92/lavida-variant-B-seed0-selfdistill-alpha0p021from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base_id = "Qwen/Qwen2.5-Math-7B"
5adapter_id = "Pritish92/lavida-variant-A-seed0-a-2000"
6
7tokenizer = AutoTokenizer.from_pretrained(base_id, trust_remote_code=True)
8base = AutoModelForCausalLM.from_pretrained(base_id, trust_remote_code=True, device_map="auto")
9model = PeftModel.from_pretrained(base, adapter_id)
10model.eval()cot-4shot evaluation path used in the LaViDA experiments for comparable MATH-500 numbers.A_2000 vs D_OracleAug replication target is still seed 1.D_OracleAug).1@misc{saha2026lavidaa2000,
2 title = {LaViDA Variant A Seed-0 A_2000},
3 author = {Saha, Pritish},
4 year = {2026},
5 url = {https://huggingface.co/Pritish92/lavida-variant-A-seed0-a-2000}
6}