File size: 755 Bytes
359188f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | ---
language:
- ar
- en
base_model: Qwen/Qwen3.5-2B
tags:
- qwen3.5
- identity-tuned
- phantom-ai
- qlora
license: apache-2.0
---
# Phantom AI — رفيق
مساعد ذكاء اصطناعي متقدم مبني على **Qwen/Qwen3.5-2B**.
## التقنية
- **Base Model:** Qwen/Qwen3.5-2B
- **Training:** QLoRA (r=128, alpha=256, RSLoRA) + Full Merge
- **Format:** float16 safetensors — بدون quantization
- **Identity:** رفيق (Rafiq)
## الاستخدام
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
tokenizer = AutoTokenizer.from_pretrained("ashraf20/phantom_ai")
model = AutoModelForCausalLM.from_pretrained(
"ashraf20/phantom_ai",
torch_dtype=torch.float16,
device_map="auto"
)
```
|