muzaffercky/kurdish-kurmanji-theses
Viewer • Updated • 389 • 57
Sorjîn1-7B is a Kurdish Kurmanji language model produced by continually pretraining Qwen/Qwen2.5-7B on academic theses written in Kurdish Kurmanji.
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained(
"muzaffercky/Sorjin1-7B",
torch_dtype="bfloat16",
device_map="auto",
)
tokenizer = AutoTokenizer.from_pretrained("muzaffercky/Sorjin1-7B")
inputs = tokenizer("Zimanê kurdî zimanekî", return_tensors="pt").to(model.device)
output = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(output[0], skip_special_tokens=True))
| Model | Eval Loss | Perplexity |
|---|---|---|
| Qwen/Qwen2.5-7B (base) | 3.42 | 30.57 |
| Sorjîn1-7B | 1.86 | 6.42 |
5× perplexity reduction after a single epoch of continual pretraining.
This is a base model — it is not instruction-tuned. It is intended for:
| Model | Description |
|---|---|
| Sorjîn1-LoRA | Raw LoRA adapter weights |
| Sorjîn1-7B (this model) | Continually pretrained base model |
| Sorjîn1-7B-Instruct | Merged with Qwen2.5-7B-Instruct |