Arabic LLM โ Qwen72B
This model is a fine-tuned Arabic version of Qwen 72B, optimized for Arabic understanding and generation.
โ๏ธ Intended Use
- Arabic question-answering
- Dialogue agents
- Text generation and summarization
Not intended for producing factual or sensitive information without human verification.
๐ฆ Usage
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("Lina-Z/arabic_llm_test")
model = AutoModelForCausalLM.from_pretrained("Lina-Z/arabic_llm_test")
prompt = "ุงุดุฑุญ ู
ูููู
ุงูุงูุชุจุงู ุงูุฐุงุชู ูู ุงููู
ุงุฐุฌ ุงููุบููุฉ"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=200)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
- Downloads last month
- -
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
๐
Ask for provider support