An open-source family of large language models purpose-built for the Turkish language
Try the 14B Demo
·
Try the 7B Demo
·
Training Dataset
Turkish is spoken by over 80 million native speakers, yet remains significantly underrepresented in the LLM landscape. Most existing multilingual models treat Turkish as a secondary language, resulting in poor grammar, hallucinated content, and lack of cultural context.
Turkish-LLM addresses this gap by providing a family of open-source language models specifically fine-tuned for native Turkish understanding and generation. The project includes the full training pipeline, curated datasets, and ready-to-deploy inference applications.
- First comprehensive open-source Turkish LLM family spanning 1.5B to 32B parameters
- Multi-stage training pipeline: SFT + DPO (Direct Preference Optimization) for human-aligned responses
- 144,000 curated Turkish instruction-response pairs released as an open dataset
- End-to-end training pipeline via LowResource-LLM-Forge — reusable for any low-resource language
- Live interactive demos running on Hugging Face Spaces with ZeroGPU
- GGUF quantized models for local deployment via llama.cpp, Ollama, and LM Studio
Browse the full collection: Turkish LLM Family on HuggingFace
| Model | Parameters | Base | Method | Hardware | Status |
|---|---|---|---|---|---|
| Turkish-LLM-14B-Instruct | 14.7B | Qwen2.5-14B-Instruct | SFT + DPO | A100 80GB | Available |
| Turkish-LLM-7B-Instruct | 7B | Turkcell-LLM-7b-v1 | LoRA SFT + DPO | V100 32GB | Available |
| Turkish-LLM-14B-Instruct-GGUF | 14.7B | — | Q4/Q5/Q8/F16 | CPU/GPU | Available |
| Turkish-LLM-32B-Instruct | 32B | Qwen2.5-32B-Instruct | QLoRA SFT | A100 80GB | Coming Soon |
| Turkish-LLM-3B-Instruct | 3B | Qwen2.5-3B-Instruct | LoRA SFT | V100 32GB | Coming Soon |
| Turkish-LLM-1.5B-Instruct | 1.5B | Qwen2.5-1.5B-Instruct | LoRA SFT | V100 32GB | Coming Soon |
| Model | MMLU_TR | XCOPA_TR | XNLI_TR | TurkishMMLU |
|---|---|---|---|---|
| Qwen2.5-14B-Instruct (base) | 59.47 | 66.80 | 41.53 | — |
| Turkish-LLM-14B-Instruct | 59.77 | 66.00 | 43.33 | 61.33 |
| Δ vs base | +0.30 | -0.80 | +1.80 | — |
Key findings:
- +1.8 points on XNLI_TR: Significant improvement in Turkish natural language inference
- 61.33 on TurkishMMLU: Strong performance on Turkish-specific knowledge benchmarks
- MMLU_TR maintained near base level — fine-tuning preserves general knowledge while improving Turkish
Pre-quantized GGUF models are available for local inference with llama.cpp, Ollama, and LM Studio.
| File | Quant | Size | RAM Needed | Best For |
|---|---|---|---|---|
| Turkish-LLM-14B-Instruct-F16.gguf | F16 | 28 GB | 32-35 GB | Full precision, A100/H100 |
| Turkish-LLM-14B-Instruct-Q8_0.gguf | Q8_0 | 15 GB | 18-20 GB | RTX 3090/4090 |
| Turkish-LLM-14B-Instruct-Q5_K_M.gguf | Q5_K_M | 9.8 GB | 13-14 GB | M2/M3 Mac |
| Turkish-LLM-14B-Instruct-Q4_K_M.gguf | Q4_K_M | 8.4 GB | 11-12 GB | M1/M2 Mac, 16GB laptop |
Recommendation: Q4_K_M offers the best size-to-quality ratio for most consumer hardware.
Full details: Turkish-LLM-14B-Instruct-GGUF
┌─────────────────────────────────────────────────────────┐
│ Turkish-LLM Pipeline │
├─────────────────────────────────────────────────────────┤
│ │
│ ┌──────────────┐ ┌──────────────┐ ┌───────────┐ │
│ │ Data Coll. │───▶│ Training │───▶│ Serving │ │
│ │ │ │ │ │ │ │
│ │ 144K Turkish │ │ SFT / LoRA │ │ Gradio │ │
│ │ pairs from │ │ on A100 80GB │ │ on Zero- │ │
│ │ curated │ │ │ │ GPU │ │
│ │ sources │ │ bf16 mixed │ │ │ │
│ │ │ │ precision │ │ vLLM / │ │
│ │ │ │ │ │ Ollama │ │
│ └──────────────┘ └──────────────┘ └───────────┘ │
│ │
└─────────────────────────────────────────────────────────┘
The training data consists of 144,000 Turkish instruction-response pairs covering diverse domains:
| Domain | Description | Purpose |
|---|---|---|
| Science | Photosynthesis, water cycle, biology, physics, chemistry | Factual accuracy in Turkish scientific discourse |
| History | Ottoman Empire, War of Independence, Republic era | Culturally grounded historical knowledge |
| Geography | 7 regions of Turkey, rivers, lakes, climate systems | Location-aware Turkish responses |
| General Knowledge | Education, culture, daily life | Broad conversational ability |
| Anti-Repetition | Specially crafted examples | Fluent prose generation without loops |
The full dataset is publicly available: ogulcanaydogan/Turkish-LLM-v10-Training
Each model goes through a multi-stage training process:
Base Model → SFT (Supervised Fine-Tuning) → DPO (Direct Preference Optimization) → Merge → Evaluate → Publish
|
Stage 1: SFT
|
Stage 2: DPO
|
Training was orchestrated using the LowResource-LLM-Forge pipeline, a custom framework designed for efficient fine-tuning of LLMs for low-resource languages.
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "ogulcanaydogan/Turkish-LLM-14B-Instruct"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.float16,
device_map="auto"
)
messages = [
{"role": "system", "content": "Sen yardimci bir Turkce yapay zeka asistanisin."},
{"role": "user", "content": "Fotosentez nedir?"}
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt").to(model.device)
outputs = model.generate(
**inputs,
max_new_tokens=512,
temperature=0.7,
top_p=0.9,
repetition_penalty=1.15
)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))# Direct from HuggingFace (no setup needed)
ollama run hf.co/ogulcanaydogan/Turkish-LLM-14B-Instruct-GGUF:Q4_K_M
# Or with a local GGUF file
ollama create turkish-llm-14b -f Modelfile
ollama run turkish-llm-14b "Turkiye'nin baskenti neresidir?"Example Modelfile
FROM Turkish-LLM-14B-Instruct-Q4_K_M.gguf
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER repeat_penalty 1.1
SYSTEM "Sen yardimci bir Turkce yapay zeka asistanisin."
TEMPLATE "<|im_start|>system
{{.System}}<|im_end|>
<|im_start|>user
{{.Prompt}}<|im_end|>
<|im_start|>assistant
"
# Download
huggingface-cli download ogulcanaydogan/Turkish-LLM-14B-Instruct-GGUF Turkish-LLM-14B-Instruct-Q4_K_M.gguf
# Run inference
./llama-cli -m Turkish-LLM-14B-Instruct-Q4_K_M.gguf \
-p "<|im_start|>system\nSen yardimci bir Turkce yapay zeka asistanisin.<|im_end|>\n<|im_start|>user\nTurkiye'nin baskenti neresidir?<|im_end|>\n<|im_start|>assistant\n" \
-n 256 --temp 0.7pip install vllm
vllm serve ogulcanaydogan/Turkish-LLM-14B-Instruct \
--dtype float16 \
--max-model-len 4096Download any GGUF file from Turkish-LLM-14B-Instruct-GGUF and load it directly in LM Studio.
python inference.py --model 14b --prompt "Yapay zeka nedir?"| Model | FP16 VRAM | GGUF Q4_K_M | Recommended GPU |
|---|---|---|---|
| 14B | ~30 GB | ~8.4 GB | A100 / RTX 4090 (FP16) or any 16GB+ (GGUF) |
| 7B | ~14 GB | ~4 GB | RTX 3090 / RTX 4080 / Apple M-series |
Turkish-LLM/
├── README.md
├── inference.py # CLI inference script (7B & 14B)
└── spaces/
├── app_14b.py # Gradio chatbot app for 14B
└── requirements.txt
- 14B SFT + DPO model (available)
- 7B SFT model (available)
- GGUF quantizations (Q4/Q5/Q8/F16)
- Training dataset release (144K pairs)
- HuggingFace collection
- 32B model (QLoRA on A100)
- 3B model (edge/mobile deployment)
- 1.5B model (embedded/IoT)
- Turkish Speech models (ASR + TTS)
- End-to-end Turkish voice assistant demo
- Academic paper (arxiv preprint)
| Project | Description |
|---|---|
| LowResource-LLM-Forge | Language-agnostic LLM fine-tuning pipeline for low-resource languages |
| Turkish LLM Family (HF Collection) | All models, datasets, and demos in one place |
| Turkish-LLM-14B-Instruct-GGUF | GGUF quantized models for local deployment |
- Primarily optimized for Turkish; English capabilities may be reduced compared to base models
- Best suited for informational Q&A; creative writing quality varies
- The 14B model requires ~30GB VRAM in FP16 (use quantized versions for consumer GPUs)
- Not recommended for production use without additional safety alignment and evaluation
If you use Turkish-LLM in your research, please cite:
@misc{aydogan2026turkishllm,
title = {Turkish-LLM: Open-Source Turkish Language Models},
author = {Aydogan, Ogulcan},
year = {2026},
publisher = {GitHub / Hugging Face},
url = {https://github.com/ogulcanaydogan/Turkish-LLM}
}This project is licensed under the Apache License 2.0.
Built by Ogulcan Aydogan · GitHub · Hugging Face · LinkedIn