Image-Text-to-Text
Transformers
Safetensors
qwen3_vl_moe
robotics
embodied-ai
video-understanding
progress-estimation
reward-modeling
qwen3-vl
conversational
Instructions to use InternRobotics/VLAC-Cut with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use InternRobotics/VLAC-Cut with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="InternRobotics/VLAC-Cut") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("InternRobotics/VLAC-Cut") model = AutoModelForMultimodalLM.from_pretrained("InternRobotics/VLAC-Cut", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use InternRobotics/VLAC-Cut with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "InternRobotics/VLAC-Cut" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "InternRobotics/VLAC-Cut", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/InternRobotics/VLAC-Cut
- SGLang
How to use InternRobotics/VLAC-Cut with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "InternRobotics/VLAC-Cut" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "InternRobotics/VLAC-Cut", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "InternRobotics/VLAC-Cut" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "InternRobotics/VLAC-Cut", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use InternRobotics/VLAC-Cut with Docker Model Runner:
docker model run hf.co/InternRobotics/VLAC-Cut
Add README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
pipeline_tag: image-text-to-text
|
| 4 |
+
base_model: Qwen/Qwen3-VL-30B-A3B-Instruct
|
| 5 |
+
tags:
|
| 6 |
+
- robotics
|
| 7 |
+
- video-understanding
|
| 8 |
+
- multimodal
|
| 9 |
+
- progress-estimation
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# VLAC2 Qwen3-VL 30B A3B Progress
|
| 13 |
+
|
| 14 |
+
This repository contains the inference-ready VLAC2 model weights staged from the current formal checkpoint `checkpoint-2315_ver5_vlac311_formal_v2-20260512-111948`.
|
| 15 |
+
|
| 16 |
+
## What Is Included
|
| 17 |
+
|
| 18 |
+
- Full finetuned model weights in `safetensors` shard format
|
| 19 |
+
- Tokenizer files
|
| 20 |
+
- Image and video processor configs
|
| 21 |
+
- Chat template used by the exported checkpoint
|
| 22 |
+
- `examples/` with `3` bundled demo videos
|
| 23 |
+
- `quick_start/` with one minimal inference script
|
| 24 |
+
|
| 25 |
+
## What Is Excluded
|
| 26 |
+
|
| 27 |
+
- DeepSpeed optimizer states
|
| 28 |
+
- `global_step*` recovery directories
|
| 29 |
+
- RNG snapshots
|
| 30 |
+
- Trainer logs and internal resume artifacts
|
| 31 |
+
|
| 32 |
+
## Base Model
|
| 33 |
+
|
| 34 |
+
- Base checkpoint: `Qwen/Qwen3-VL-30B-A3B-Instruct`
|
| 35 |
+
- Exported architecture: `Qwen3VLMoeForConditionalGeneration`
|
| 36 |
+
- Recommended VLAC model type in local evaluation scripts: `qwen3_moe_vl`
|
| 37 |
+
|
| 38 |
+
## Suggested Loading
|
| 39 |
+
|
| 40 |
+
```python
|
| 41 |
+
from transformers import AutoModelForImageTextToText, AutoProcessor
|
| 42 |
+
|
| 43 |
+
model_id = "YOUR_ORG/VLAC2-Qwen3VL-30B-A3B-Progress"
|
| 44 |
+
|
| 45 |
+
processor = AutoProcessor.from_pretrained(model_id)
|
| 46 |
+
model = AutoModelForImageTextToText.from_pretrained(
|
| 47 |
+
model_id,
|
| 48 |
+
torch_dtype="auto",
|
| 49 |
+
device_map="auto",
|
| 50 |
+
)
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
## Local VLAC Evaluation
|
| 54 |
+
|
| 55 |
+
Use this staged model repo with the existing benchmark scripts by passing:
|
| 56 |
+
|
| 57 |
+
```bash
|
| 58 |
+
MODEL_PATH=/path/to/VLAC2-Qwen3VL-30B-A3B-Progress
|
| 59 |
+
MODEL_TYPE=qwen3_moe_vl
|
| 60 |
+
```
|
| 61 |
+
|
| 62 |
+
## Bundled Demo
|
| 63 |
+
|
| 64 |
+
- examples: `examples/`
|
| 65 |
+
- quick start: `quick_start/README.md`
|
| 66 |
+
- simple runner: `quick_start/run_example.py`
|
| 67 |
+
|
| 68 |
+
## Notes Before Public Release
|
| 69 |
+
|
| 70 |
+
- Fill in the final license.
|
| 71 |
+
- Add the final citation and dataset repo link.
|
| 72 |
+
- If you publish the benchmark separately, link it here via the model card metadata.
|