Image-Text-to-Text
Transformers
Safetensors
qwen3_5
vllm
video
multimodal
reinforcement-learning
temporal-grounding
object-tracking
video-segmentation
visual-question-answering
spatial-reasoning
qwen3.5
conversational
Instructions to use OraRL/Video-ORA-9B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OraRL/Video-ORA-9B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="OraRL/Video-ORA-9B") 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("OraRL/Video-ORA-9B") model = AutoModelForMultimodalLM.from_pretrained("OraRL/Video-ORA-9B", 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 OraRL/Video-ORA-9B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OraRL/Video-ORA-9B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OraRL/Video-ORA-9B", "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/OraRL/Video-ORA-9B
- SGLang
How to use OraRL/Video-ORA-9B 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 "OraRL/Video-ORA-9B" \ --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": "OraRL/Video-ORA-9B", "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 "OraRL/Video-ORA-9B" \ --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": "OraRL/Video-ORA-9B", "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 OraRL/Video-ORA-9B with Docker Model Runner:
docker model run hf.co/OraRL/Video-ORA-9B
File size: 29,779 Bytes
53c10a4 | 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 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 | #!/usr/bin/env python3
"""
Spatial-Temporal Video Grounding (STVG) evaluation — vLLM data-parallel.
Inputs: OneThinker-eval style JSON/JSONL under `<bench_dir>/<name>.json`.
Each record has:
data_type = "video"
problem_type = "spatial-temporal grounding"
problem = "<video>...question..."
path = "./<rel>.mp4"
solution/answer = '<answer>{"time":[t0,t1],"boxes":{"9":[x1,y1,x2,y2],...}}</answer>'
`boxes` can also be a list-of-list (one box per integer second starting at
round(t0)); we normalize both shapes into a dict keyed by int-second.
Metrics (paper-standard STVG, mirrors Table 6 of OneThinker / LLaVA-ST):
tIoU — 1D IoU of `time`
tIoU@0.5 — fraction of samples with tIoU >= 0.5
sIoU — 2D IoU averaged over EVERY GT frame (missing pred frame = 0)
sIoU@0.5 — fraction of samples with sIoU >= 0.5
Extras:
mIoU_inter — 2D IoU averaged over pred ∩ gt frames (lenient, OneThinker
training-reward semantics; for training-time comparison)
accuracy — 0.5*tIoU + 0.5*mIoU_inter (per-sample legacy combined)
parse_rate — frac of samples with a valid JSON answer
Coord system: norm1000 (same domain for gt and pred, no rescaling).
Inference mode: SERVER-SIDE video decoding.
- The message only carries the local video path; vLLM workers load and
decode the video themselves using qwen_vl_utils, controlled by
`mm_processor_kwargs` and `media_io_kwargs` configured on the LLM.
- `allowed_local_media_path` is set to `--base_prefix` (or `/` if empty)
so vLLM is allowed to read the video files from disk.
Usage:
python eval_stvg_vllm.py \\
--model_path /path/to/ckpt \\
--bench_dir /path/to/OneThinker-eval \\
--datasets eval_stvg \\
--output_dir outputs/temporal_grounding/...
"""
from __future__ import annotations
import argparse
import json
import os
import re
import sys
import time as _time
from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple
os.environ.setdefault("VLLM_USE_V1", "1")
os.environ.setdefault("VLLM_WORKER_MULTIPROC_METHOD", "spawn")
os.environ.setdefault("FORCE_QWENVL_VIDEO_READER", "decord")
os.environ.setdefault("DECORD_EOF_RETRY_MAX", "20480")
# ---------------------------------------------------------------------------
# Prompt — single source of truth in eval/task/eval_prompt.py
# (matches data/joint/sft_joint_all.jsonl STVG samples).
# ---------------------------------------------------------------------------
_EVAL_TASK_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
if _EVAL_TASK_DIR not in sys.path:
sys.path.insert(0, _EVAL_TASK_DIR)
from canonical_data import load_json_records # noqa: E402
from eval_prompt import ( # noqa: E402
GROUNDING_QUESTION_TEMPLATE_NO_THINK as QUESTION_TEMPLATE_NO_THINK,
STVG_TAIL,
TRAIN_STVG_QUESTION_PREFIX,
)
# ---------------------------------------------------------------------------
# Parsing helpers
# ---------------------------------------------------------------------------
_ANSWER_RE = re.compile(r"<answer>\s*(.*?)\s*</answer>", re.DOTALL | re.IGNORECASE)
def extract_answer(text: Optional[str]) -> str:
if not isinstance(text, str):
return ""
m = _ANSWER_RE.search(text)
return m.group(1).strip() if m else text.strip()
def _load_json_relaxed(s: str) -> Optional[dict]:
"""Try json.loads, then first balanced `{...}` substring."""
if not isinstance(s, str):
return None
s = s.strip()
if not s:
return None
try:
obj = json.loads(s)
return obj if isinstance(obj, dict) else None
except Exception:
pass
start = s.find("{")
if start < 0:
return None
depth = 0
for i in range(start, len(s)):
c = s[i]
if c == "{":
depth += 1
elif c == "}":
depth -= 1
if depth == 0:
try:
obj = json.loads(s[start:i + 1])
return obj if isinstance(obj, dict) else None
except Exception:
return None
return None
def _is_list_of_numbers(x, n: Optional[int] = None) -> bool:
if not isinstance(x, list):
return False
if n is not None and len(x) != n:
return False
try:
for v in x:
float(v)
return True
except Exception:
return False
# ---------------------------------------------------------------------------
# IoU helpers — identical to eval_bench.py
# ---------------------------------------------------------------------------
def iou_1d(pred, gt) -> float:
if not _is_list_of_numbers(pred, 2) or not _is_list_of_numbers(gt, 2):
return 0.0
p0, p1 = float(pred[0]), float(pred[1])
g0, g1 = float(gt[0]), float(gt[1])
if p0 > p1: p0, p1 = p1, p0
if g0 > g1: g0, g1 = g1, g0
inter = max(0.0, min(p1, g1) - max(p0, g0))
union = max(p1, g1) - min(p0, g0)
return inter / union if union > 1e-12 else 0.0
def iou_2d(b1, b2) -> float:
if not _is_list_of_numbers(b1, 4) or not _is_list_of_numbers(b2, 4):
return 0.0
x1 = max(float(b1[0]), float(b2[0])); y1 = max(float(b1[1]), float(b2[1]))
x2 = min(float(b1[2]), float(b2[2])); y2 = min(float(b1[3]), float(b2[3]))
inter = max(0.0, x2 - x1) * max(0.0, y2 - y1)
a1 = max(0.0, b1[2] - b1[0]) * max(0.0, b1[3] - b1[1])
a2 = max(0.0, b2[2] - b2[0]) * max(0.0, b2[3] - b2[1])
u = a1 + a2 - inter
return inter / u if u > 1e-12 else 0.0
def mean_iou_over_intersection(pred_boxes: Dict[str, List[float]],
gt_boxes: Dict[str, List[float]]) -> float:
"""Mean IoU over keys present in BOTH pred and gt (OneThinker / training
reward semantics; lenient — does not penalize missing pred frames)."""
if not isinstance(pred_boxes, dict) or not isinstance(gt_boxes, dict):
return 0.0
common = set(pred_boxes.keys()) & set(gt_boxes.keys())
if not common:
return 0.0
vals = [iou_2d(pred_boxes[k], gt_boxes[k]) for k in common]
return sum(vals) / len(vals) if vals else 0.0
def mean_iou_over_gt_frames(pred_boxes: Dict[str, List[float]],
gt_boxes: Dict[str, List[float]]) -> float:
"""Mean IoU over EVERY gt frame; missing pred frames score 0.
This is the standard "sIoU" reported in STVG papers
(Table 6 of OneThinker / LLaVA-ST), and it strictly penalizes
pred frame coverage gaps."""
if not isinstance(gt_boxes, dict) or not gt_boxes:
return 0.0
pred_dict = pred_boxes if isinstance(pred_boxes, dict) else {}
total, n = 0.0, 0
for k, gbox in gt_boxes.items():
total += iou_2d(pred_dict.get(k, []), gbox)
n += 1
return total / n if n > 0 else 0.0
# ---------------------------------------------------------------------------
# Box-dict normalization (supports dict AND list-of-list)
# ---------------------------------------------------------------------------
def _normalize_boxes(boxes: Any,
time_span: Optional[List[float]] = None
) -> Dict[str, List[float]]:
"""Coerce boxes into {str(int_sec): [x1,y1,x2,y2]}.
* dict: int/str-int keys preserved (as str(int)); bad entries dropped.
* list: aligned with integer seconds starting at round(time_span[0]);
requires a valid 2-number time_span.
Other inputs → empty dict.
"""
if isinstance(boxes, dict):
out: Dict[str, List[float]] = {}
for k, v in boxes.items():
try:
ki = int(float(k))
except Exception:
continue
if _is_list_of_numbers(v, 4):
out[str(ki)] = [float(x) for x in v]
return out
if isinstance(boxes, list) and _is_list_of_numbers(time_span, 2):
t0 = int(round(float(time_span[0])))
out = {}
for i, b in enumerate(boxes):
if _is_list_of_numbers(b, 4):
out[str(t0 + i)] = [float(x) for x in b]
return out
return {}
# ---------------------------------------------------------------------------
# Dataset loading
# ---------------------------------------------------------------------------
def _read_json_or_jsonl(path: str) -> List[Dict[str, Any]]:
return load_json_records(path)
_CANONICAL_DATASET_ALIASES = {
"eval_stvg": "stvg",
}
def load_dataset(bench_dir: str, name: str) -> List[Dict[str, Any]]:
base = name[:-5] if name.endswith(".json") else name
base = base[:-6] if base.endswith(".jsonl") else base
candidates = (base, _CANONICAL_DATASET_ALIASES.get(base, base))
for candidate in dict.fromkeys(candidates):
for ext in (".json", ".jsonl"):
p = os.path.join(bench_dir, candidate + ext)
if os.path.isfile(p):
return _read_json_or_jsonl(p)
raise FileNotFoundError(
f"Dataset not found for {name!r} under {bench_dir}"
)
def _strip_leading_tags(text: str) -> str:
if not isinstance(text, str):
return ""
return re.sub(r"<(?:video|image)>\s*", "", text, count=1).strip()
def _extract_raw_query(problem_text: str) -> str:
"""Extract the raw query from an eval-style STVG problem string.
Eval format examples:
"Who is watching the ball? Please find the corresponding time period ..."
"The person in red shirt? Please find ... When and where ..."
We take everything before the first occurrence of "Please find" or
"When and where" as the raw query.
"""
for sep in ("? Please find the corresponding time period",
"? Please describe the location",
"? When and where does",
"When and where does"):
idx = problem_text.find(sep)
if idx > 0:
return problem_text[:idx].strip()
return problem_text.split("?")[0].strip() if "?" in problem_text else problem_text.strip()
def build_prompt_text(example: Dict[str, Any], enable_thinking: bool = False,
prompt_mode: str = "default") -> str:
question = _strip_leading_tags(
example.get("problem") or example.get("question") or "")
raw_query = _extract_raw_query(question)
q = TRAIN_STVG_QUESTION_PREFIX.format(query=raw_query)
return QUESTION_TEMPLATE_NO_THINK.format(Question=q) + STVG_TAIL
def _resolve_video_path(rec: Dict[str, Any], base_prefix: str) -> Optional[str]:
"""Resolve a video path. Tries (in order):
1. absolute path as-is
2. <base>/<full_relative_path>
3. <base>/<basename>
4. drop common prefix dirs (e.g. anno records `./Evaluation/<sub>/...`
but disk has only `<base>/<sub>/...` without the `Evaluation/` layer)
5. last-resort: 1-level recursive search by basename under <base>
Returns absolute path or None (caller should treat None as 'skip').
"""
raw = (rec.get("path") or rec.get("video") or rec.get("video_path")
or rec.get("file_name"))
if not raw:
return None
if os.path.isabs(raw) and os.path.isfile(raw):
return raw
rel = raw.lstrip("./").lstrip("/")
base = (base_prefix or "").rstrip("/")
if not base:
return raw if os.path.isfile(raw) else None
candidates: List[str] = []
candidates.append(os.path.join(base, rel))
candidates.append(os.path.join(base, os.path.basename(rel)))
# Drop one or two leading directory components to handle anno layouts
# like "./Evaluation/<dataset>/<file>" living at "<base>/<dataset>/<file>".
parts = rel.split("/")
for k in (1, 2):
if len(parts) > k:
candidates.append(os.path.join(base, *parts[k:]))
for cand in candidates:
if os.path.isfile(cand):
return cand
# 1-level recursive lookup by basename under <base> (cheap on small dirs).
base_name = os.path.basename(rel)
if base_name:
for root, _dirs, files in os.walk(base):
if base_name in files:
return os.path.join(root, base_name)
# don't go too deep — STVG benches usually have only 1-2 levels.
depth = root[len(base):].count(os.sep)
if depth >= 3:
_dirs.clear()
return None
def _extract_gt(rec: Dict[str, Any]):
blob = rec.get("solution") or rec.get("answer") or ""
ans = extract_answer(blob) if isinstance(blob, str) else ""
obj = _load_json_relaxed(ans)
if obj is None and isinstance(blob, dict):
obj = blob
if not isinstance(obj, dict):
return None, {}
t = obj.get("time")
if not _is_list_of_numbers(t, 2):
t = None
return t, _normalize_boxes(obj.get("boxes"), t)
def _extract_pred(text: str):
ans = extract_answer(text)
obj = _load_json_relaxed(ans)
if not isinstance(obj, dict):
return None, {}
t = obj.get("time")
if not _is_list_of_numbers(t, 2):
t = None
return t, _normalize_boxes(obj.get("boxes"), t)
# ---------------------------------------------------------------------------
# vLLM packing — client-side video decoding (same as verl / eval_timelens_vllm)
# ---------------------------------------------------------------------------
def _build_video_content(video_path: str, args) -> List[Dict[str, Any]]:
"""Build message content with video sampling parameters (client-side decode).
`process_vision_info` will read the video from disk using these kwargs
(fps, total_pixels, max_frames, min/max pixels per-frame) to produce
decoded tensors. **All of these are forwarded so eval matches training.**
"""
item: Dict[str, Any] = {
"type": "video",
"video": video_path,
"total_pixels": args.video_total_pixels,
"max_frames": args.max_frames,
"fps": args.fps,
}
if getattr(args, "video_min_pixels", None) is not None:
item["min_pixels"] = args.video_min_pixels
if getattr(args, "video_max_pixels", None) is not None:
item["max_pixels"] = args.video_max_pixels
return [item]
def _prepare_for_vllm(messages, processor, patch_size: int,
enable_thinking: bool = False):
"""Build vLLM input dict with client-side decoded video tensors.
Mirrors verl's rollout: apply_chat_template → process_vision_info →
pass multi_modal_data + mm_processor_kwargs to vLLM.
"""
from qwen_vl_utils import process_vision_info
text = processor.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True,
enable_thinking=enable_thinking,
)
_images, video_inputs, video_kwargs = process_vision_info(
messages,
image_patch_size=patch_size,
return_video_kwargs=True,
return_video_metadata=True,
)
video_kwargs = video_kwargs or {}
video_kwargs["do_resize"] = False
llm_input: Dict[str, Any] = {"prompt": text}
if video_inputs:
llm_input["multi_modal_data"] = {"video": video_inputs}
llm_input["mm_processor_kwargs"] = video_kwargs
return llm_input
# ---------------------------------------------------------------------------
# Per-dataset evaluation
# ---------------------------------------------------------------------------
def evaluate_one(llm, sampling_params, processor,
dataset_name: str, args) -> Dict[str, Any]:
print(f"\n>>> Evaluating {dataset_name}", flush=True)
records = load_dataset(args.bench_dir, dataset_name)
# Deterministic order for shard slicing.
records.sort(key=lambda r: (r.get("problem_id", 0),
str(r.get("path", ""))))
max_samples = int(getattr(args, "max_samples", 0) or 0)
if max_samples > 0:
records = records[:max_samples]
if args.chunk > 1:
records = records[args.index::args.chunk]
print(f" Shard {args.index}/{args.chunk}: {len(records)} samples",
flush=True)
else:
print(f" Loaded {len(records)} samples", flush=True)
# Filter to STVG only (defensive — the file *should* be pure STVG).
records = [
r for r in records
if str(r.get("problem_type", "")).strip().lower()
== "spatial-temporal grounding"
or not r.get("problem_type") # accept untyped records too
]
if not records:
print(" [warn] no STVG records after filtering; skipping.", flush=True)
return {}
# ------------------------------------------------------------------
# Pre-resolve all video paths up front so we fail loudly (and quickly)
# if --base_prefix is wrong, instead of silently scoring 0 for hours.
# ------------------------------------------------------------------
print(f" resolving video paths under base_prefix={args.base_prefix} ...",
flush=True)
resolved: List[Optional[str]] = []
n_missing = 0
for rec in records:
vp = _resolve_video_path(rec, args.base_prefix)
resolved.append(vp)
if vp is None:
n_missing += 1
if n_missing:
# Show first 3 examples to help the user diagnose.
examples = [r.get("path") for r, vp in zip(records, resolved) if vp is None][:3]
print(f" [warn] {n_missing}/{len(records)} videos missing on disk. "
f"First few unresolved paths:", flush=True)
for ex in examples:
print(f" - {ex!r}", flush=True)
if n_missing == len(records):
raise SystemExit(
"[fatal] 0/{n} videos resolved. Set --base_prefix correctly. "
"Got base_prefix={base!r}, anno records reference paths like "
"{ex!r}".format(n=len(records), base=args.base_prefix, ex=examples[0])
)
else:
print(f" all {len(records)} videos resolved OK.", flush=True)
# Per-sample buffers. We track all four standard STVG metrics:
# tIoU : 1D temporal IoU (paper "tIoU")
# sIoU : mean spatial IoU averaged over EVERY GT frame (paper "sIoU")
# mIoU_inter : mean spatial IoU averaged over pred∩gt frames
# (lenient, OneThinker training-reward semantics; kept for
# reference when comparing against training-time numbers)
# accuracy : 0.5*tIoU + 0.5*mIoU_inter (legacy combined score)
tious, sious, mious_inter, accs = [], [], [], []
n_parsed = 0
per_sample = []
bsz = args.batch_size
t0 = _time.time()
for start in range(0, len(records), bsz):
batch = records[start:start + bsz]
batch_paths = resolved[start:start + bsz]
inputs_for_vllm = []
keep_idx: List[int] = []
for j, (rec, vp) in enumerate(zip(batch, batch_paths)):
if not vp:
continue
content = _build_video_content(vp, args)
content.append({"type": "text", "text": build_prompt_text(
rec, enable_thinking=args.enable_thinking,
prompt_mode=args.prompt_mode)})
messages = [{"role": "user", "content": content}]
try:
packed = _prepare_for_vllm(
messages, processor, args.patch_size,
enable_thinking=args.enable_thinking)
except Exception as e:
print(f" [warn] prepare failed (pid={rec.get('problem_id')}): {e}",
flush=True)
continue
inputs_for_vllm.append(packed)
keep_idx.append(j)
texts = [""] * len(batch)
if inputs_for_vllm:
try:
outs = llm.generate(inputs_for_vllm,
sampling_params=sampling_params)
for j, out in zip(keep_idx, outs):
texts[j] = out.outputs[0].text
except Exception as e:
print(f" [error] vLLM generate failed @batch {start}: {e}",
flush=True)
for rec, answer in zip(batch, texts):
gt_t, gt_b = _extract_gt(rec)
pr_t, pr_b = _extract_pred(answer)
parsed = (pr_t is not None) or bool(pr_b)
if parsed:
n_parsed += 1
tiou = iou_1d(pr_t, gt_t) if (pr_t and gt_t) else 0.0
siou = mean_iou_over_gt_frames(pr_b, gt_b) if gt_b else 0.0
miou_inter = mean_iou_over_intersection(pr_b, gt_b) if gt_b else 0.0
acc = 0.5 * tiou + 0.5 * miou_inter
tious.append(tiou)
sious.append(siou)
mious_inter.append(miou_inter)
accs.append(acc)
per_sample.append({
"problem_id": rec.get("problem_id"),
"path": rec.get("path"),
"gt_time": gt_t,
"gt_boxes_n": len(gt_b),
"pred_time": pr_t,
"pred_boxes_n": len(pr_b),
"tiou": round(tiou, 4),
"siou": round(siou, 4),
"miou_inter": round(miou_inter, 4),
"accuracy": round(acc, 4),
"answer": answer,
})
if (start // bsz) % 10 == 0:
done = start + len(batch)
el = _time.time() - t0
print(f" [{done}/{len(records)}] {el:.1f}s "
f"tIoU={sum(tious)/max(len(tious),1):.4f} "
f"sIoU={sum(sious)/max(len(sious),1):.4f} "
f"parse={n_parsed}/{len(accs)}", flush=True)
n = len(accs)
metrics = {
"num_samples": n,
# ---- paper-standard STVG metrics ----
"tIoU": round(sum(tious) / max(n, 1) * 100, 2),
"tIoU@0.5": round(sum(1 for v in tious if v >= 0.5) / max(n, 1) * 100, 2),
"sIoU": round(sum(sious) / max(n, 1) * 100, 2),
"sIoU@0.5": round(sum(1 for v in sious if v >= 0.5) / max(n, 1) * 100, 2),
# ---- extras for OneThinker-style comparison ----
"mIoU_inter": round(sum(mious_inter) / max(n, 1) * 100, 2),
"mean_accuracy": round(sum(accs) / max(n, 1) * 100, 2),
"parse_rate": round(n_parsed / max(n, 1) * 100, 2),
}
# extra recall thresholds (R@0.3 / 0.7) for both tIoU and sIoU
for t in (0.3, 0.7):
metrics[f"tIoU@{t}"] = round(
sum(1 for v in tious if v >= t) / max(n, 1) * 100, 2)
metrics[f"sIoU@{t}"] = round(
sum(1 for v in sious if v >= t) / max(n, 1) * 100, 2)
# Persist per-sample results.
os.makedirs(args.output_dir, exist_ok=True)
suffix = f"_shard{args.index}" if args.chunk > 1 else ""
out_path = os.path.join(
args.output_dir, f"results_{dataset_name}{suffix}.json")
with open(out_path, "w", encoding="utf-8") as f:
json.dump(per_sample, f, ensure_ascii=False, indent=2)
print(f" [{dataset_name}] "
f"tIoU={metrics['tIoU']:.2f}% tIoU@0.5={metrics['tIoU@0.5']:.2f}% "
f"sIoU={metrics['sIoU']:.2f}% sIoU@0.5={metrics['sIoU@0.5']:.2f}% "
f"mIoU_inter={metrics['mIoU_inter']:.2f}% "
f"parse={metrics['parse_rate']:.2f}% n={n}", flush=True)
return metrics
# ---------------------------------------------------------------------------
# Main
# ---------------------------------------------------------------------------
def parse_args():
p = argparse.ArgumentParser(
description="STVG evaluation via vLLM (OneThinker prompt).")
p.add_argument("--model_path", required=True)
p.add_argument("--processor_path", default=None,
help="Defaults to --model_path.")
p.add_argument("--bench_dir", required=True,
help="Dir containing eval_stvg*.json / .jsonl.")
p.add_argument("--datasets", default="eval_stvg",
help="Comma-separated names (with or without .json).")
p.add_argument("--max_samples", type=int, default=0,
help="Maximum samples before sharding; 0 evaluates all.")
p.add_argument("--output_dir", required=True)
p.add_argument("--base_prefix", default="",
help="Prefix for relative video paths inside records.")
# video sampling (client-side decoding via qwen_vl_utils / process_vision_info)
p.add_argument("--video_total_pixels", type=int,
default=8 * 1024 * 1024,
help="Total pixel budget across all sampled frames "
"(default: 8M; matches the STVG training config).")
p.add_argument("--video_min_pixels", type=int, default=None,
help="Minimum per-frame pixel count. Should match training "
"(STVG yaml uses 65536 = 256x256).")
p.add_argument("--video_max_pixels", type=int, default=None,
help="Maximum per-frame pixel count. Should match training "
"(STVG yaml uses 8388608 = 8M).")
p.add_argument("--max_pixels_video", type=int, default=None,
help="[DEPRECATED] alias for --video_total_pixels.")
p.add_argument("--max_frames", type=int, default=128,
help="Max sampled frames; matches training default (128).")
p.add_argument("--fps", type=int, default=2)
# vLLM engine
p.add_argument("--tensor_parallel_size", type=int, default=1)
p.add_argument("--gpu_memory_utilization", type=float, default=0.85)
p.add_argument("--max_model_len", type=int, default=65536)
p.add_argument("--max_new_tokens", type=int, default=2048)
p.add_argument("--max_num_batched_tokens", type=int, default=65536)
p.add_argument("--enforce_eager", action="store_true", default=False)
p.add_argument("--seed", type=int, default=42)
p.add_argument("--batch_size", type=int, default=4)
# thinking mode
p.add_argument("--enable_thinking", action="store_true", default=False,
help="Enable Qwen3 <think> block. Default: disabled.")
p.add_argument("--prompt_mode", type=str, default="default",
choices=["default", "bare", "onethink", "train_stvg"],
help="'default': full NO_THINK+STVG_TAIL template. "
"'bare': raw question only (for SFT ckpts trained on raw prompts). "
"'onethink': OneThinker official format — reasoning "
"instruction in SYSTEM message, task tail in USER message. "
"'train_stvg': rewrite question to training format "
"'Given the query \"...\", when and where...' + template.")
# sharding
p.add_argument("--chunk", type=int, default=1,
help="Total shards (for data-parallel launcher).")
p.add_argument("--index", type=int, default=0,
help="This shard's index in [0, chunk).")
args = p.parse_args()
if args.max_samples < 0:
p.error("--max_samples must be non-negative")
return args
def main():
args = parse_args()
if args.processor_path is None:
args.processor_path = args.model_path
if args.max_pixels_video is not None:
args.video_total_pixels = args.max_pixels_video
os.makedirs(args.output_dir, exist_ok=True)
from vllm import LLM, SamplingParams
from transformers import AutoProcessor, AutoTokenizer
print(f"Model: {args.model_path}", flush=True)
print(f"Processor: {args.processor_path}", flush=True)
print(f"Bench dir: {args.bench_dir}", flush=True)
print(f"Datasets: {args.datasets}", flush=True)
print(f"Base prefix: {args.base_prefix}", flush=True)
print(f"Video: total_pixels={args.video_total_pixels} "
f"max_frames={args.max_frames} fps={args.fps}", flush=True)
print(f"Thinking: {args.enable_thinking}", flush=True)
print(f"Prompt mode: {args.prompt_mode}", flush=True)
# Processor + tokenizer — client-side video decoding (like verl rollout)
processor = AutoProcessor.from_pretrained(
args.processor_path, padding_side="left",
do_resize=False, trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained(
args.processor_path, trust_remote_code=True)
tokenizer.padding_side = "left"
processor.tokenizer = tokenizer
patch_size = processor.image_processor.patch_size
args.patch_size = patch_size
print(f"Patch size: {patch_size}", flush=True)
llm = LLM(
model=args.model_path,
tensor_parallel_size=args.tensor_parallel_size,
gpu_memory_utilization=args.gpu_memory_utilization,
max_model_len=args.max_model_len,
trust_remote_code=True,
dtype="bfloat16",
limit_mm_per_prompt={"video": 1, "image": 1},
enforce_eager=args.enforce_eager,
enable_chunked_prefill=True,
max_num_batched_tokens=args.max_num_batched_tokens,
seed=args.seed,
)
sampling_params = SamplingParams(
max_tokens=args.max_new_tokens,
temperature=0.0,
top_p=1.0,
stop_token_ids=[],
)
all_metrics: Dict[str, Dict[str, Any]] = {}
for ds in [s.strip() for s in args.datasets.split(",") if s.strip()]:
metrics = evaluate_one(llm, sampling_params, processor, ds, args)
if metrics:
all_metrics[ds] = metrics
# Write summary (per-shard file if sharded).
suffix = f"_shard{args.index}" if args.chunk > 1 else ""
summary_path = os.path.join(args.output_dir, f"summary{suffix}.json")
with open(summary_path, "w", encoding="utf-8") as f:
json.dump(all_metrics, f, ensure_ascii=False, indent=2)
print(f"\nSummary -> {summary_path}", flush=True)
if __name__ == "__main__":
main()
|