Kona2-small-3.8B is a compact 3.8-billion parameter Georgian language model built on
Microsoft Phi-3.5-mini-instruct . It goes through the
full training pipeline (pre-training + SFT + DPO) like the 12B models, but provides Georgian language capabilities with significantly lower compute requirements.
1 from transformers import AutoModelForCausalLM , AutoTokenizer
2
3 model = AutoModelForCausalLM . from_pretrained (
4 "tbilisi-ai-lab/kona2-small-3.8B" ,
5 torch_dtype = "auto" ,
6 device_map = "auto" ,
7 trust_remote_code = True # Required for Phi-3 architecture
8 )
9 tokenizer = AutoTokenizer . from_pretrained (
10 "tbilisi-ai-lab/kona2-small-3.8B" ,
11 trust_remote_code = True
12 )
13
14 messages = [
15 { "role" : "user" , "content" : "გამარჯობა! რა არის ხელოვნური ინტელექტი?" }
16 ]
17
18 inputs = tokenizer . apply_chat_template (
19 messages ,
20 return_tensors = "pt" ,
21 add_generation_prompt = True
22 ) . to ( model . device )
23
24 outputs = model . generate (
25 inputs ,
26 max_new_tokens = 256 ,
27 temperature = 0.7 ,
28 do_sample = True
29 )
30 print ( tokenizer . decode ( outputs [ 0 ] , skip_special_tokens = True ) )
1 # If using GGUF quantized version
2 ollama run kona2-small
>>> გამარჯობა!
გამარჯობა! როგორ შემიძლია დაგეხმარო?
1 @misc{tbilisi2025kona2small,
2 title = {Kona2-small-3.8B: A Compact Georgian Language Model},
3 author = {Tbilisi AI Lab Team},
4 year = {2025},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/tbilisi-ai-lab/kona2-small-3.8B}}
7 }
This model is released under the
Apache 2.0 License .