AhiskaAI-308m-Base-v0.2 is a 308 million parameter Small Language Model (SLM) built entirely from scratch. As the largest model in the AhiskaAI v0.2 family, it is designed to deliver stronger Turkish language understanding while maintaining efficient deployment on consumer hardware.
The v0.2 release adopts a data-centric training strategy, prioritizing corpus quality over dataset size.
The 308M model serves as the flagship base model of the AhiskaAI v0.2 family.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("AhiskaAI/AhiskaAI-308m-Base-v0.2")
4tokenizer = AutoTokenizer.from_pretrained("AhiskaAI/AhiskaAI-308m-Base-v0.2")
5
6text = "Türkiye Cumhuriyeti"
7
8inputs = tokenizer(text, return_tensors="pt")
9
10outputs = model.generate(**inputs, max_new_tokens=50)
11
12print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Trained on NVIDIA RTX 4050 6GB Laptop GPU.
AhiskaAI is an independent open-source initiative dedicated to developing efficient Turkish Small Language Models trained completely from scratch.
Follow us on Hugging Face for updates and future releases.