Turkish LLM Family
Collection
Open-source Turkish LLM family (1.5B-32B). Models, GGUF quantizations, datasets, and demos. • 8 items • Updated
A Turkish-enhanced 7B language model fine-tuned from Mistral-7B-Instruct on curated Turkish instruction data.
Part of the Turkish LLM Family.
ollama run hf.co/ogulcanaydogan/Turkish-LLM-7B-Instruct-GGUF:Q4_K_M
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("ogulcanaydogan/Turkish-LLM-7B-Instruct", torch_dtype="auto", device_map="auto")
tokenizer = AutoTokenizer.from_pretrained("ogulcanaydogan/Turkish-LLM-7B-Instruct")
messages = [{"role": "user", "content": "Turkiye'nin baskenti neresidir?"}]
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=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
| Model | Size | GGUF |
|---|---|---|
| Turkish-LLM-7B | 7B | Download |
| Turkish-LLM-14B | 14B | Download |
| Turkish-LLM-32B | 32B | Download |
@misc{aydogan2026turkishllm,
title={Turkish LLM Family: Open-Source Turkish Language Models},
author={Ogulcan Aydogan},
year={2026},
url={https://huggingface.co/collections/ogulcanaydogan/turkish-llm-family-69b303b4ef1c36caffca4e94}
}