AhiskaAI-134m-Base-v0.2 is a 134 million parameter Small Language Model (SLM) built from scratch. It represents the second generation of the AhiskaAI organization's mission to develop efficient, high-quality, native Turkish language models.
A major leap in the v0.2 release is the transition to data-centric AI.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("AhiskaAI/AhiskaAI-134m-Base-v0.2")
4tokenizer = AutoTokenizer.from_pretrained("AhiskaAI/AhiskaAI-134m-Base-v0.2")
5
6text = "Türkiye Cumhuriyeti"
7inputs = tokenizer(text, return_tensors="pt")
8outputs = model.generate(**inputs, max_new_tokens=50)
9print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Trained on NVIDIA RTX 4050 6GB Laptop GPU.
Instruct Version: AhiskaAI-134m-IT-v0.2 (Fine-tuned for chat and instructions).
Preference Alignment: v0.2.1 DPO (Direct Preference Optimization) is currently under development to refine response quality.
AhiskaAI is an independent initiative dedicated to pushing the boundaries of Small Language Models in the Turkish language.
Follow us on Hugging Face for updates and new releases.