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
Update model card and quick start docs
Browse files
README.md
CHANGED
|
@@ -9,38 +9,31 @@ tags:
|
|
| 9 |
- progress-estimation
|
| 10 |
---
|
| 11 |
|
| 12 |
-
# VLAC2
|
| 13 |
|
| 14 |
-
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 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 |
-
|
| 26 |
-
|
| 27 |
-
-
|
| 28 |
-
- `
|
| 29 |
-
- RNG snapshots
|
| 30 |
-
- Trainer logs and internal resume artifacts
|
| 31 |
|
| 32 |
-
##
|
| 33 |
|
| 34 |
-
-
|
| 35 |
-
-
|
| 36 |
-
-
|
| 37 |
|
| 38 |
-
##
|
| 39 |
|
| 40 |
```python
|
| 41 |
from transformers import AutoModelForImageTextToText, AutoProcessor
|
| 42 |
|
| 43 |
-
model_id = "
|
| 44 |
|
| 45 |
processor = AutoProcessor.from_pretrained(model_id)
|
| 46 |
model = AutoModelForImageTextToText.from_pretrained(
|
|
@@ -50,23 +43,21 @@ model = AutoModelForImageTextToText.from_pretrained(
|
|
| 50 |
)
|
| 51 |
```
|
| 52 |
|
| 53 |
-
##
|
| 54 |
|
| 55 |
-
|
| 56 |
|
| 57 |
```bash
|
| 58 |
-
|
| 59 |
-
|
|
|
|
| 60 |
```
|
| 61 |
|
| 62 |
-
|
| 63 |
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
## Notes Before Public Release
|
| 69 |
|
| 70 |
-
|
| 71 |
-
- Add the final citation and dataset repo link.
|
| 72 |
-
- If you publish the benchmark separately, link it here via the model card metadata.
|
|
|
|
| 9 |
- progress-estimation
|
| 10 |
---
|
| 11 |
|
| 12 |
+
# VLAC2-Qwen3VL-30B-A3B-Progress
|
| 13 |
|
| 14 |
+
VLAC2-Qwen3VL-30B-A3B-Progress is a video-language progress estimation model for robotic manipulation. Given a task description and a video, it predicts time-progress keypoints that can be aligned into a dense progress curve.
|
| 15 |
|
| 16 |
+
This release contains the inference-ready model weights, tokenizer and processor files, three bundled demo episodes, and a minimal local inference example.
|
| 17 |
|
| 18 |
+
## Model
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+
- Base model: `Qwen/Qwen3-VL-30B-A3B-Instruct`
|
| 21 |
+
- Architecture: `Qwen3VLMoeForConditionalGeneration`
|
| 22 |
+
- Recommended VLAC model type in local evaluation scripts: `qwen3_moe_vl`
|
| 23 |
+
- Bundled quick start uses the `chunk_all` prompt and samples the input video at `2 Hz`
|
|
|
|
|
|
|
| 24 |
|
| 25 |
+
## Highlights
|
| 26 |
|
| 27 |
+
- Progress estimation for long-horizon manipulation videos
|
| 28 |
+
- Rollback and regression recognition in non-expert trajectories
|
| 29 |
+
- Bundled demos for both expert and non-expert episodes
|
| 30 |
|
| 31 |
+
## Use with Transformers
|
| 32 |
|
| 33 |
```python
|
| 34 |
from transformers import AutoModelForImageTextToText, AutoProcessor
|
| 35 |
|
| 36 |
+
model_id = "InternRobotics/VLAC2-Qwen3VL-30B-A3B-Progress"
|
| 37 |
|
| 38 |
processor = AutoProcessor.from_pretrained(model_id)
|
| 39 |
model = AutoModelForImageTextToText.from_pretrained(
|
|
|
|
| 43 |
)
|
| 44 |
```
|
| 45 |
|
| 46 |
+
## Quick Start
|
| 47 |
|
| 48 |
+
Run one of the bundled examples from the model release root:
|
| 49 |
|
| 50 |
```bash
|
| 51 |
+
python quick_start/run_example.py --example-id example_01
|
| 52 |
+
python quick_start/run_example.py --example-id example_02
|
| 53 |
+
python quick_start/run_example.py --example-id example_03
|
| 54 |
```
|
| 55 |
|
| 56 |
+
For local VLAC benchmark scripts, use:
|
| 57 |
|
| 58 |
+
```bash
|
| 59 |
+
MODEL_PATH=/path/to/VLAC2-Qwen3VL-30B-A3B-Progress
|
| 60 |
+
MODEL_TYPE=qwen3_moe_vl
|
| 61 |
+
```
|
|
|
|
| 62 |
|
| 63 |
+
More details are provided in `quick_start/README.md`.
|
|
|
|
|
|