Views
No views yet
<think> leaks, no repetition loops, natural short replies. It also tracks context and remembers earlier turns surprisingly well for its size. The tuned sampling defaults (temperature 0.5, repetition_penalty 1.3) are baked into generation_config.json, so it behaves out of the box.tbb-32k-v2).<|user|>\n{msg}\n<|end|>\n<|assistant|>\n| Benchmark | Chat | Supra2-Instruct |
|---|---|---|
| ARC-Easy | 53.2 | 44.4 |
| ARC-Challenge | 28.2 | 24.7 |
| OpenBookQA | 31.2 | 30.4 |
| WinoGrande | 52.0 | 50.5 |
| PIQA | 65.9 | 64.4 |
| MMLU | 25.2 | 25.8 |
| HellaSwag | 32.8 | 35.9 |
--multiple-choice path under-reports these tasks):1lm_eval --model hf \
2 --model_args pretrained=nkthebass/tinybrainbot-100m-v3-chat,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.1from transformers import AutoModelForCausalLM, AutoTokenizer
2tok = AutoTokenizer.from_pretrained("nkthebass/tinybrainbot-100m-v3-chat")
3model = AutoModelForCausalLM.from_pretrained("nkthebass/tinybrainbot-100m-v3-chat")
4prompt = "<|user|>\nHi! How's it going?\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))