Views
No views yet
| Parameter | Value |
|---|---|
| Base Model | Qwen/Qwen2.5-3B-Instruct |
| Method | LoRA (PEFT) |
| Rank (r) | 64 |
| Alpha | 128 |
| Dropout | 0.05 |
| Target Modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
| Trainable Params | 119.7M / 1.82B total (6.6%) |
| Training Examples | 106,356 |
| Epochs | 2 |
| Final Loss | 0.846 |
| Hardware | NVIDIA L4 |
| Framework | PEFT v0.18.1 |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4# Load base model + LoRA adapter
5base_model = AutoModelForCausalLM.from_pretrained(
6 "Qwen/Qwen2.5-3B-Instruct",
7 torch_dtype="auto",
8 device_map="auto"
9)
10model = PeftModel.from_pretrained(base_model, "cagataydev/qwen2.5-omni-3b-cagatay")
11tokenizer = AutoTokenizer.from_pretrained("cagataydev/qwen2.5-omni-3b-cagatay")
12
13# Robotics command
14messages = [{"role": "user", "content": "Pick up the red cube on the table and bring it to me"}]
15text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
16inputs = tokenizer(text, return_tensors="pt").to(model.device)
17outputs = model.generate(**inputs, max_new_tokens=256)
18print(tokenizer.decode(outputs[0], skip_special_tokens=True))| Category | Description | Example |
|---|---|---|
| 🫳 Pick & Place | Object manipulation | "Grab the bottle from the shelf" |
| 🧭 Navigation | Movement commands | "Go to the kitchen" |
| 🔧 Manipulation | Fine motor tasks | "Pour water into the cup" |
| 📋 Multi-step | Chained actions | "Open drawer, take spoon, close it" |
| 👁️ Observation | Visual queries | "What do you see on the table?" |
| 📐 Spatial | Precise movements | "Move arm left 5 centimeters" |
| 🏠 Household | Domestic tasks | "Clean the table" |
| ⚠️ Safety | Emergency commands | "Stop immediately!" |
| 💬 Conversational | Feedback | "Good job, try again" |
| 🎯 Context-rich | Requires vision | "The one I pointed at" |
| Resource | Description |
|---|---|
| vlm-voice-audio | 10K audio recordings of robot commands |
| vlm-voice-commands | 50K text robot commands |
| neon-vla | Live demo — Vision-Language-Action model |
| qwen3.5-4B-cagatay | Qwen 3.5 4B LoRA variant |
| qwen3.5-35B-A3B-cagatay | Qwen 3.5 35B MoE LoRA variant |
omni-commands dataset (106K examples)
↓
Qwen2.5-3B-Instruct (base)
↓ LoRA r=64, α=128
Fine-tuned adapter (120M params)
↓
Merged into Neon VLA pipeline