hamzabouajila/ar-pusht-image
Viewer β’ Updated β’ 48.3k β’ 28 β’ 2
How to use hamzabouajila/openvla-pusht-arabic with Unsloth Studio:
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for hamzabouajila/openvla-pusht-arabic to start chatting
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for hamzabouajila/openvla-pusht-arabic to start chatting
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for hamzabouajila/openvla-pusht-arabic to start chatting
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
model_name="hamzabouajila/openvla-pusht-arabic",
max_seq_length=2048,
)FastVLA democratizes Vision-Language-Action (VLA) models by enabling real-time robotics reasoning on budget hardware (NVIDIA L4/T4). This model is fine-tuned specifically for the Arabic language, bridging the gap in localized Physical AI.
| Metric | OpenVLA (Base) | FastVLA (Fine) | Improvement |
|---|---|---|---|
| Inference Latency | 1420.0 ms | 198.2 ms | 7.16x faster |
| Action Error (L2) | 28.5 px | 12.4 px | 2.30x more accurate |
| VRAM Usage | 5.50 GB | 4.45 GB | 19.2% reduction |
In 2026, 81% of Arabic AI is still text-only. FastVLA is the first bridge to Arabic Physical AI, allowing robotics policies to understand native instructions while running at 5Hz control loops on standard cloud instances.
from fastvla import FastVLAModel
model = FastVLAModel.from_pretrained(
"hamzabouajila/fastvla-arabic-hero",
load_in_4bit=True
)
# Arabic Command: "Push the block to the target"
instruction = "Ψ―ΩΨΉ Ψ§ΩΨΨ¬Ψ± Ψ₯ΩΩ Ψ§ΩΩΨ―Ω"
action = model.predict_action(image, instruction)
Maintained by: Hamza Bouajila | GitHub Repository