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
File size: 12,705 Bytes
1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 82c454e f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 82c454e 77f673b 82c454e f8c2464 82c454e f8c2464 82c454e 3b3fcfd 82c454e 3b3fcfd f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 82c454e 3b3fcfd f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 3b3fcfd 82c454e 3b3fcfd 1fcc9a1 f8c2464 1fcc9a1 f8c2464 1fcc9a1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 | #!/usr/bin/env python3
from __future__ import annotations
import argparse
import json
import os
import re
import tempfile
from pathlib import Path
import numpy as np
from PIL import Image
THIS_DIR = Path(__file__).resolve().parent
MODEL_ROOT = THIS_DIR.parent
DEFAULT_SAMPLE_HZ = 2.0
SIGNED_NUM = r"([+-]?[0-9]+(?:\.[0-9]+)?)"
POINT_TIME_RE = re.compile(r"(?:Time|时间)[::]?\s*([0-9]+(?:\.[0-9]+)?)\s*s?", re.IGNORECASE)
POINT_PROGRESS_LINE_RE = re.compile(rf"(?im)^\s*(?:Progress|进度)[::]?\s*{SIGNED_NUM}\s*%")
INLINE_POINT_RE = re.compile(
rf"(?:Time|时间)[::]?\s*([0-9]+(?:\.[0-9]+)?)\s*s?\s*[,,]?\s*(?:Progress|进度)[::]?\s*{SIGNED_NUM}\s*%",
re.IGNORECASE,
)
def parse_args() -> argparse.Namespace:
parser = argparse.ArgumentParser(
description="Run VLAC progress inference on an arbitrary input video.",
)
parser.add_argument(
"--model-path",
type=Path,
default=MODEL_ROOT,
help="Path to the released VLAC model directory.",
)
parser.add_argument(
"--video-path",
type=Path,
required=True,
help="Path to the input video.",
)
parser.add_argument(
"--task-instruction",
type=str,
default=None,
help="Task instruction used to build the default chunk_all prompt.",
)
parser.add_argument(
"--task-plan",
type=str,
default=None,
help="Optional task plan text appended after the task instruction.",
)
parser.add_argument(
"--prompt",
type=str,
default=None,
help="Optional full prompt override. If set, task instruction and plan are ignored.",
)
parser.add_argument(
"--sample-hz",
type=float,
default=DEFAULT_SAMPLE_HZ,
help="Video sampling rate in Hz. Defaults to 2.0.",
)
parser.add_argument(
"--output-jsonl",
type=Path,
default=None,
help="Optional output path. Defaults to quick_start/outputs/<video_stem>.jsonl",
)
parser.add_argument(
"--max-new-tokens",
type=int,
default=1024,
help="Generation cap for the response.",
)
return parser.parse_args()
def build_chunk_all_prompt(task_instruction: str, task_plan: str | None) -> str:
task_instruction = task_instruction.strip()
task_plan = (task_plan or "").strip()
task_and_plan = task_instruction if not task_plan else f"{task_instruction}\n{task_plan}"
return (
f"任务描述和具体规划: {task_and_plan}\n\n"
"请根据任务描述和具体规划,找到并逐点生成视频中的关键动作点和相应的进度标注。"
"输出格式要求:每个关键点一行,格式为:\n"
"时间: X.Xs, 进度: Y%\n\n"
"请严格按照上述格式输出,不要输出额外说明。"
)
def resolve_prompt(args: argparse.Namespace) -> tuple[str, str, str | None, str | None]:
prompt = args.prompt.strip() if args.prompt else None
task_plan = args.task_plan.strip() if args.task_plan else None
task_instruction = args.task_instruction.strip() if args.task_instruction else None
if prompt:
return prompt, "raw_prompt", task_instruction, task_plan
if not task_instruction:
raise SystemExit(
"Either provide --prompt, or provide --task-instruction with optional --task-plan."
)
return build_chunk_all_prompt(task_instruction, task_plan), "task_instruction_plus_plan", task_instruction, task_plan
def resolve_video_path(video_path_arg: Path) -> Path:
video_path = video_path_arg.resolve()
if not video_path.exists():
raise SystemExit(f"Missing video: {video_path}")
return video_path
def maybe_relativize_to_model_root(path: Path) -> str:
try:
return str(path.resolve().relative_to(MODEL_ROOT.resolve()))
except ValueError:
return str(path.resolve())
def compute_sampled_indices(num_frames: int, fps: float, sample_hz: float) -> tuple[list[int], list[float]]:
if num_frames <= 0:
raise SystemExit(f"Invalid decoded frame count: {num_frames}")
if fps <= 0:
raise SystemExit(f"Invalid decoded fps: {fps}")
if sample_hz <= 0:
raise SystemExit(f"sample_hz must be positive, got {sample_hz}")
frame_ids = list(range(num_frames))
eligible_arr = np.array(frame_ids, dtype=float)
duration_sec = max(0.0, (num_frames - 1) / fps)
step_sec = 1.0 / sample_hz
target_times: list[float] = []
current = 0.0
eps = 1e-9
while current <= duration_sec + eps:
target_times.append(round(current, 6))
current += step_sec
if not target_times:
target_times = [0.0]
sampled_indices: list[int] = []
sampled_timestamps_sec: list[float] = []
seen = set()
for target_time in target_times:
target_frame = target_time * fps
pos = int(np.argmin(np.abs(eligible_arr - target_frame)))
idx = int(eligible_arr[pos])
if idx in seen:
continue
seen.add(idx)
sampled_indices.append(idx)
sampled_timestamps_sec.append(round(idx / fps, 6))
return sampled_indices, sampled_timestamps_sec
def extract_sampled_frame_paths(
video_path: Path,
sample_hz: float,
*,
temp_dir: Path,
) -> tuple[list[str], dict[str, float], list[int], list[float]]:
try:
from decord import VideoReader, cpu
except ImportError as exc:
raise SystemExit("Missing dependency: decord is required for video sampling in quick_start.") from exc
vr = VideoReader(str(video_path), ctx=cpu(0), num_threads=1)
actual_frame_count = len(vr)
actual_fps = float(vr.get_avg_fps())
sampled_indices, sampled_timestamps_sec = compute_sampled_indices(actual_frame_count, actual_fps, sample_hz)
if not sampled_indices:
raise SystemExit("No sampled frame indices were generated.")
if sampled_indices[-1] >= actual_frame_count:
raise SystemExit(
f"Decoded video is shorter than expected. Need frame index {sampled_indices[-1]}, "
f"got {actual_frame_count} frames."
)
batch = vr.get_batch(sampled_indices).asnumpy()
frame_paths: list[str] = []
for idx, frame in zip(sampled_indices, batch, strict=True):
frame_path = temp_dir / f"frame_{idx:06d}.jpg"
Image.fromarray(frame).save(frame_path, quality=95)
frame_paths.append(str(frame_path.resolve()))
video_stats = {
"decoded_frame_count": float(actual_frame_count),
"decoded_avg_fps": actual_fps,
"decoded_duration_sec": round(max(0.0, (actual_frame_count - 1) / actual_fps), 6),
}
return frame_paths, video_stats, sampled_indices, sampled_timestamps_sec
def load_swift_runtime():
os.environ.setdefault("PYTORCH_CUDA_ALLOC_CONF", "expandable_segments:True")
os.environ.setdefault("IMAGE_MAX_TOKEN_NUM", "256")
os.environ.setdefault("VIDEO_MAX_TOKEN_NUM", "256")
os.environ.setdefault("VIDEO_MIN_TOKEN_NUM", "4")
os.environ.setdefault("QWEN_VL_UTILS_MAX_FRAME_LIST", "0")
try:
import torch # noqa: F401
except ImportError as exc:
raise SystemExit("Missing dependency: torch is required for quick_start inference.") from exc
try:
from swift.llm import InferRequest, PtEngine, RequestConfig
except ImportError:
from swift.infer_engine import InferRequest, RequestConfig, TransformersEngine as PtEngine # type: ignore
return InferRequest, PtEngine, RequestConfig
def strip_code_fence(text: str) -> str:
cleaned = str(text or "").strip()
if cleaned.startswith("```") and cleaned.endswith("```"):
lines = cleaned.splitlines()
if len(lines) >= 3:
return "\n".join(lines[1:-1]).strip()
return cleaned
def dedupe_sorted_points(times: list[float], values: list[float]) -> tuple[list[float], list[float]]:
if not times:
return [], []
pairs = sorted(zip(times, values), key=lambda item: (item[0], item[1]))
out_times: list[float] = []
out_values: list[float] = []
cur_time = pairs[0][0]
bucket: list[float] = []
for time_val, progress_val in pairs:
if abs(time_val - cur_time) > 1e-9:
out_times.append(float(cur_time))
out_values.append(float(sum(bucket) / len(bucket)))
cur_time = time_val
bucket = [float(progress_val)]
else:
bucket.append(float(progress_val))
out_times.append(float(cur_time))
out_values.append(float(sum(bucket) / len(bucket)))
return out_times, out_values
def parse_point_blocks(text: str) -> tuple[list[float], list[float]]:
cleaned = strip_code_fence(text)
if not cleaned:
return [], []
inline_matches = INLINE_POINT_RE.findall(cleaned)
if inline_matches:
return dedupe_sorted_points(
[float(time_val) for time_val, _ in inline_matches],
[float(progress_val) for _, progress_val in inline_matches],
)
blocks = re.split(r"(?=(?:Time|时间)[::]?\s*[0-9])", cleaned, flags=re.IGNORECASE)
times: list[float] = []
values: list[float] = []
for block in blocks:
block = block.strip()
if not block:
continue
time_match = POINT_TIME_RE.search(block)
progress_match = POINT_PROGRESS_LINE_RE.search(block)
if time_match and progress_match:
times.append(float(time_match.group(1)))
values.append(float(progress_match.group(1)))
return dedupe_sorted_points(times, values)
def main() -> int:
args = parse_args()
model_path = args.model_path.resolve()
if not model_path.exists():
raise SystemExit(f"Missing model path: {model_path}")
prompt, prompt_source, task_instruction, task_plan = resolve_prompt(args)
video_path = resolve_video_path(args.video_path)
video_path_for_output = maybe_relativize_to_model_root(video_path)
output_path = args.output_jsonl or (THIS_DIR / "outputs" / f"{video_path.stem}.jsonl")
output_path.parent.mkdir(parents=True, exist_ok=True)
InferRequest, PtEngine, RequestConfig = load_swift_runtime()
engine = PtEngine(
str(model_path),
model_type="qwen3_moe_vl",
max_batch_size=1,
device_map="auto",
)
with tempfile.TemporaryDirectory(prefix="vlac_quick_start_frames_") as temp_dir_str:
temp_dir = Path(temp_dir_str)
frame_paths, video_stats, sampled_indices, sampled_timestamps_sec = extract_sampled_frame_paths(
video_path,
args.sample_hz,
temp_dir=temp_dir,
)
request = InferRequest(
messages=[
{
"role": "user",
"content": [
{"type": "video", "video": frame_paths},
{"type": "text", "text": prompt},
],
}
]
)
response = engine.infer(
[request],
RequestConfig(max_tokens=args.max_new_tokens, temperature=0.0, top_k=1, top_p=1.0),
)[0].choices[0].message.content
pred_point_times_sec, pred_point_progress = parse_point_blocks(response)
output_row: dict[str, object] = {}
if task_instruction is not None:
output_row["task_instruction"] = task_instruction
if task_plan:
output_row["task_plan"] = task_plan
output_row.update(
{
"video_path": video_path_for_output,
"prompt_source": prompt_source,
"prompt_variant": "chunk_all" if prompt_source != "raw_prompt" else "custom",
"input_sample_hz": float(args.sample_hz),
"input_frame_indices": sampled_indices,
"input_timestamps_sec": sampled_timestamps_sec,
"input_frame_count": len(sampled_indices),
"decoded_video_stats": video_stats,
"prompt": prompt,
"response": response,
"pred_curve_parse_ok": bool(pred_point_progress),
"pred_curve_point_times_sec": pred_point_times_sec,
"pred_curve_point_progress": pred_point_progress,
}
)
output_path.write_text(json.dumps(output_row, ensure_ascii=False) + "\n", encoding="utf-8")
print(f"video_path={video_path}")
print(f"output_jsonl={output_path.resolve()}")
print(f"input_sample_hz={float(args.sample_hz):.4f}")
print(f"input_frame_count={len(sampled_indices)}")
print(f"pred_keypoint_count={len(pred_point_progress)}")
print()
print(response)
return 0
if __name__ == "__main__":
raise SystemExit(main())
|