metadata
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)
الاستخدام
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"
)