Views
No views yet
<|user|>\n{msg}\n<|end|>\n<|assistant|>\n| Benchmark | This model | Supra2-100M-Instruct |
|---|---|---|
| ARC-Easy | 53.7 | 44.4 |
| ARC-Challenge | 29.0 | 24.7 |
| OpenBookQA | 32.0 | 30.4 |
| PIQA | 65.7 | 64.4 |
| WinoGrande | 50.9 | 50.5 |
| HellaSwag | 33.3 | 35.9 |
| MMLU | 25.7 | 25.8 |
--multiple-choice path under-reports these tasks):1lm_eval --model hf \
2 --model_args pretrained=nkthebass/tinybrainbot-100m-v3-math,dtype=float32 \
3 --tasks hellaswag,arc_easy,arc_challenge,openbookqa,winogrande,piqa,mmlu \
4 --num_fewshot 0 --batch_size 32acc_norm for HellaSwag / ARC / OpenBookQA / PIQA; acc for WinoGrande & MMLU.What is 12 + 7 * 3? → "First: 7×3=21, then 12+21 = 33." (the base and general instruct both get this wrong.)1from transformers import AutoModelForCausalLM, AutoTokenizer
2tok = AutoTokenizer.from_pretrained("nkthebass/tinybrainbot-100m-v3-math")
3model = AutoModelForCausalLM.from_pretrained("nkthebass/tinybrainbot-100m-v3-math")
4prompt = "<|user|>\nWhat is 12 + 7 * 3?\n<|end|>\n<|assistant|>\n"
5ids = tok(prompt, return_tensors="pt").input_ids
6print(tok.decode(model.generate(ids, max_new_tokens=60)[0][ids.shape[1]:], skip_special_tokens=True))tinybrainbot-100m-v3-math-f16.gguf) for llama.cpp / Ollama / LM Studio, with the add_space_prefix=false + leading-space chat template baked in — order-of-operations works faithfully from the GGUF.