| Suite | Metric | base | this model |
|---|---|---|---|
| HumanEval | pass@1 | 68.9 | 70.7 |
| MBPP | pass@1 | 66.7 | 69.6 |
| Domain (held-out) | spec_to_code exec | 0.632 | 0.714 (+8.2) |
| Domain (held-out) | api_signature param-recall | 0.217 | 0.299 (+8.2) |
| Domain (held-out) | problem_solving exec | 0.700 | 0.713 (parity) |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2tok = AutoTokenizer.from_pretrained("srivarenya/MoM-python-slm")
3model = AutoModelForCausalLM.from_pretrained(
4 "srivarenya/MoM-python-slm", dtype="bfloat16", device_map="auto")