"تو شاہیں ہے، پرواز ہے کام تیرا" — علامہ اقبال کے کلام اور فلسفے پر مبنی پہلا سپیشلائزڈ لسانی ماڈل
🦅 Shaheen-Qwen2.5-3B-Kulliyat-e-Iqbal (v1.0) 🇵🇰
Shaheen-Qwen2.5-3B is a specialized Large Language Model fine-tuned on the complete poetic works of Allama Muhammad Iqbal. Built on the Qwen 2.5 3B Instruct architecture, this model is designed to interpret, explain, and contextualize the philosophical depth of Iqbaliyat in both Urdu and Persian.
Using the Kulliyat-e-Iqbal Shaheen Dataset (11,659 records), this model bridges the gap between classical wisdom and modern conversational AI.
🌟 Model Highlights
Specialized Knowledge: Deeply trained on 11 major Urdu and Persian books of Allama Iqbal.
Bilingual Proficiency: Capable of understanding and explaining Persian (Farsi) couplets in simple Urdu.
Philosophical Insight: Optimized to discuss core concepts like Khudi (Selfhood), Ishq (Divine Love), and Shaheen (The Eagle).
Asrar-e-Khudi, Rumuz-e-Bekhudi, Payam-e-Mashriq, Zabur-e-Ajam, Javid Nama, Pas Cha Bayad Kard
🚀 How to Use (Inference)
Via Transformers & Unsloth
fromunslothimportFastLanguageModelimporttorchmodel,tokenizer=FastLanguageModel.from_pretrained(model_name="Khurram123/Shaheen-3B-Kulliyat-e-Iqbal",max_seq_length=2048,load_in_4bit=True,)FastLanguageModel.for_inference(model)prompt="علامہ اقبال کے تصورِ خودی کا پیغام کیا ہے؟"inputs=tokenizer([f"<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant\n"],return_tensors="pt").to("cuda")outputs=model.generate(**inputs,max_new_tokens=250,temperature=0.5)print(tokenizer.batch_decode(outputs)[0])