A compact 0.35B-parameter instruction-tuned language model optimized for reasoning, math, and code generation tasks.
-
ARC-Challenge: Kai-0.35B scores 37.80% (5-shot), significantly outperforming both Mamba-370M (+8.7pp) and TinyLlama-1.1B (+7.7pp) — a model 3x its size.
-
PIQA: At 71.82%, Kai-0.35B nearly matches TinyLlama-1.1B (73.0%) with only 1/3 the parameters, and trails the 1B-class Llama-3.2 by less than 3pp.
-
MBPP: At 22.20% pass@1, Kai-0.35B surpasses TinyLlama-1.1B (~19.91%) in code generation despite being 3x smaller.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3model = AutoModelForCausalLM.from_pretrained(
4 "NoesisLab/Kai-0.35B-Instruct",
5 torch_dtype=torch.bfloat16,
6)
7tokenizer = AutoTokenizer.from_pretrained("NoesisLab/Kai-0.35B-Instruct")
8messages = [{"role": "user", "content": "What is 25 * 4?"}]
9input_ids = tokenizer.apply_chat_template(messages, return_tensors="pt")
10output = model.generate(input_ids, max_new_tokens=256)
11print(tokenizer.decode(output[0], skip_special_tokens=True))
1@misc{noesislab2026nkai,
2 title={Kai-0.35B-Instruct},
3 author={NoesisLab},
4 year={2026},
5 url={https://huggingface.co/NoesisLab/Kai-0.35B-Instruct}
6}