yusufbaykaloglu/qwen3.5-4b-turkish-sft-gguf
2675
<p align="center"> <img src="model-banner.png" alt="Qwen3.5-4B Turkish SFT GGUF" width="400"/> </p>
<h1 align="center">Qwen3.5-4B Turkish SFT — GGUF</h1>
<p align="center"> <b>Qwen3.5-4B Turkish SFT</b> modelinin GGUF formatında quantize edilmiş versiyonlarıdır.<br/> CPU ve hafif GPU ortamlarında çalıştırılabilir. </p>
Mevcut Dosyalar
Önerilen: Genel kullanım için Q4_K_M, dengeli kalite için Q5_K_M, yüksek kalite için Q6_K veya Q8_0 tercih edin.
Kullanım
1. llama-cpp-python (Python)
pip install llama-cpp-pythonfrom llama_cpp import Llama
llm = Llama(
model_path="Qwen3.5-4B.Q4_K_M.gguf",
n_ctx=4096,
n_threads=8,
)
output = llm.create_chat_completion(
messages=[
{"role": "user", "content": "Python'da bir listeyi nasıl sıralarım?"}
],
max_tokens=512,
temperature=0.6,
top_p=0.95,
top_k=20,
)
print(output["choices"][0]["message"]["content"])2. llama.cpp CLI
# Model indirme
huggingface-cli download yusufbaykaloglu/qwen3.5-4b-turkish-sft-gguf \
Qwen3.5-4B.Q4_K_M.gguf --local-dir ./models
# Çalıştırma
./llama-cli -m ./models/Qwen3.5-4B.Q4_K_M.gguf \
-p "Türkiye'nin en büyük şehri hangisidir?" \
-n 512 --temp 0.6 --top-p 0.95 --top-k 203. LM Studio
- LM Studio'yu açın
- Arama çubuğuna
yusufbaykaloglu/qwen3.5-4b-turkish-sft-ggufyazın - İstediğiniz quantization'ı seçip indirin
- Chat sekmesinden Türkçe sohbete başlayın
GPU Versiyonu
Tam hassasiyetli (bf16) GPU versiyonu için: 👉 yusufbaykaloglu/qwen3.5-4b-turkish-sft
Quantization Yöntemleri
bpw = bits per weight (ağırlık başına bit)
Model Detayları
@misc{qwen35-4b-turkish-sft-gguf,
author = {Yusuf Baykalioğlu},
title = {Qwen3.5-4B Turkish SFT GGUF},
year = {2026},
publisher = {HuggingFace},
url = {https://huggingface.co/yusufbaykaloglu/qwen3.5-4b-turkish-sft-gguf}
}