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-4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OraRL/Video-ORA-4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="OraRL/Video-ORA-4B") 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-4B") model = AutoModelForMultimodalLM.from_pretrained("OraRL/Video-ORA-4B", 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-4B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OraRL/Video-ORA-4B" # 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-4B", "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-4B
- SGLang
How to use OraRL/Video-ORA-4B 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-4B" \ --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-4B", "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-4B" \ --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-4B", "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-4B with Docker Model Runner:
docker model run hf.co/OraRL/Video-ORA-4B
File size: 15,727 Bytes
0185029 | 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 | """Canonical JSONL contract for OraRL evaluation samples."""
from __future__ import annotations
import json
import re
from collections.abc import Iterable, Mapping, Sequence
from pathlib import Path
from typing import Any, TypedDict, Union
from orarl.data.schema import (
CANONICAL_FIELDS,
MEDIA_PATH_KEYS,
)
from orarl.data.schema import validation_errors as core_validation_errors
from .layout import (
LayoutError,
artifact_directory,
is_dataset_id,
validate_artifact_path,
validate_dataset_id,
validate_media_path,
validate_repository_assets,
validate_repository_path,
)
EVALUATION_SCHEMA_VERSION = 1
EVALUATION_CORE_FIELDS = CANONICAL_FIELDS
EVALUATION_REQUIRED_FIELDS = (
"schema_version",
"eval_task",
"sample_id",
"benchmark",
"split",
*EVALUATION_CORE_FIELDS,
)
EVALUATION_FIELDS = (
*EVALUATION_REQUIRED_FIELDS,
"family",
"choices",
"subtitles",
"preprocessed",
"task_payload",
"metadata",
"evaluation",
)
_PATH_KEY_RE = re.compile(
r"(?:^|_)(?:artifact|artifacts|dir|directory|file|files|image|images|"
r"media|path|paths|root|subtitle|subtitles|tensor|tensors|video|videos)$"
)
class _RequiredEvaluationRow(TypedDict):
schema_version: int
eval_task: str
sample_id: str
benchmark: str
split: str
problem: str
answer: Any
images: list[Any]
videos: list[Any]
problem_type: str
source: str
class EvaluationRow(_RequiredEvaluationRow, total=False):
"""Typed canonical evaluation row.
``task_payload`` retains benchmark-specific coordinates, masks, temporal
labels, and grouping information without flattening incompatible schemas.
"""
family: str
choices: list[str]
subtitles: list[Any]
preprocessed: dict[str, Any]
task_payload: dict[str, Any]
metadata: dict[str, Any]
evaluation: dict[str, Any]
class EvaluationSchemaError(ValueError):
"""Raised when canonical evaluation rows are invalid or ambiguous."""
def _append_layout_error(errors: list[str], callback: Any) -> None:
try:
callback()
except LayoutError as error:
errors.append(str(error))
def _media_entry_paths(value: Any) -> list[str]:
if isinstance(value, str):
return [value]
if not isinstance(value, Mapping):
return []
return [
candidate
for key in MEDIA_PATH_KEYS
if isinstance((candidate := value.get(key)), str)
]
def _is_path_key(key: object) -> bool:
return isinstance(key, str) and bool(_PATH_KEY_RE.search(key.casefold()))
def _path_values(value: Any, context: str) -> Iterable[tuple[str, str]]:
if isinstance(value, str):
yield context, value
return
if isinstance(value, Sequence) and not isinstance(value, (str, bytes, bytearray)):
for index, item in enumerate(value):
yield from _path_values(item, f"{context}[{index}]")
return
if isinstance(value, Mapping):
matched = False
for key, item in value.items():
if _is_path_key(key):
matched = True
yield from _path_values(item, f"{context}.{key}")
if matched:
return
raise LayoutError(f"{context} must contain a path string or list of path strings")
def _declared_paths(value: Any, context: str) -> Iterable[tuple[str, str]]:
if isinstance(value, Mapping):
for key, item in value.items():
child_context = f"{context}.{key}"
if _is_path_key(key):
yield from _path_values(item, child_context)
elif isinstance(item, (Mapping, list, tuple)):
yield from _declared_paths(item, child_context)
elif isinstance(value, Sequence) and not isinstance(value, (str, bytes, bytearray)):
for index, item in enumerate(value):
yield from _declared_paths(item, f"{context}[{index}]")
def declared_repository_paths(
value: Any,
*,
context: str = "payload",
) -> tuple[tuple[str, str], ...]:
"""Return paths held by explicitly path-named keys in a JSON value."""
return tuple(_declared_paths(value, context))
def _evaluation_paths(record: Mapping[str, Any]) -> Iterable[tuple[str, str, str | None]]:
benchmark = record.get("benchmark")
benchmark_id = benchmark if isinstance(benchmark, str) else ""
for field in ("images", "videos"):
values = record.get(field)
if not isinstance(values, list):
continue
for index, entry in enumerate(values):
for path_index, path in enumerate(_media_entry_paths(entry)):
suffix = "" if path_index == 0 else f".path[{path_index}]"
yield f"{field}[{index}]{suffix}", path, field
subtitles = record.get("subtitles")
if isinstance(subtitles, list):
for index, entry in enumerate(subtitles):
for path_index, path in enumerate(_media_entry_paths(entry)):
suffix = "" if path_index == 0 else f".path[{path_index}]"
yield f"subtitles[{index}]{suffix}", path, "subtitles"
preprocessed = record.get("preprocessed")
if isinstance(preprocessed, Mapping):
for context, path in _declared_paths(preprocessed, "preprocessed"):
yield context, path, "artifacts"
for field in ("task_payload", "metadata", "evaluation"):
payload = record.get(field)
if isinstance(payload, Mapping):
for context, path in _declared_paths(payload, field):
kind: str | None = None
if benchmark_id and path.startswith(
f"{artifact_directory(benchmark_id)}/"
):
kind = "artifacts"
yield context, path, kind
def evaluation_asset_paths(record: Mapping[str, Any]) -> tuple[str, ...]:
"""Return every first-class or explicitly named asset path in a row."""
paths: list[str] = []
seen: set[str] = set()
for _context, path, _kind in _evaluation_paths(record):
if path not in seen:
seen.add(path)
paths.append(path)
return tuple(paths)
def evaluation_row_errors(record: Any) -> list[str]:
"""Collect all deterministic schema and layout errors for one eval row."""
if not isinstance(record, Mapping):
return ["record must be a JSON object"]
errors = list(core_validation_errors(record))
version = record.get("schema_version")
if isinstance(version, bool) or version != EVALUATION_SCHEMA_VERSION:
errors.append(f"schema_version must be {EVALUATION_SCHEMA_VERSION}")
for field in ("eval_task", "benchmark", "split"):
value = record.get(field)
_append_layout_error(
errors,
lambda value=value, field=field: validate_dataset_id(value, context=field),
)
sample_id = record.get("sample_id")
if not isinstance(sample_id, str) or not sample_id.strip():
errors.append("sample_id must be a nonempty string")
elif sample_id != sample_id.strip():
errors.append("sample_id must not contain surrounding whitespace")
family = record.get("family")
if family is not None:
_append_layout_error(
errors,
lambda: validate_dataset_id(family, context="family"),
)
choices = record.get("choices")
if choices is not None:
if not isinstance(choices, list):
errors.append("choices must be a list when provided")
else:
for index, choice in enumerate(choices):
if not isinstance(choice, str) or not choice.strip():
errors.append(f"choices[{index}] must be a nonempty string")
subtitles = record.get("subtitles")
if subtitles is not None:
if not isinstance(subtitles, list):
errors.append("subtitles must be a list when provided")
else:
for index, entry in enumerate(subtitles):
if not _media_entry_paths(entry):
errors.append(
f"subtitles[{index}] must contain a nonempty repository path"
)
for field in ("preprocessed", "task_payload", "metadata", "evaluation"):
value = record.get(field)
if value is not None and not isinstance(value, Mapping):
errors.append(f"{field} must be a JSON object when provided")
try:
declared_paths = list(_evaluation_paths(record))
except LayoutError as error:
errors.append(str(error))
declared_paths = []
benchmark = record.get("benchmark")
if is_dataset_id(benchmark):
for context, path, kind in declared_paths:
if kind in {"images", "videos", "subtitles"}:
_append_layout_error(
errors,
lambda path=path, context=context, kind=kind: validate_media_path(
path,
benchmark,
kind=kind,
context=context,
),
)
elif kind == "artifacts":
_append_layout_error(
errors,
lambda path=path, context=context: validate_artifact_path(
path,
benchmark,
context=context,
),
)
else:
_append_layout_error(
errors,
lambda path=path, context=context: validate_repository_path(
path,
context=context,
),
)
try:
json.dumps(record, ensure_ascii=False, allow_nan=False)
except (TypeError, ValueError) as error:
errors.append(f"record must contain only finite JSON values: {error}")
return errors
def validate_evaluation_row(
record: Any,
*,
context: str = "record",
repository_root: Union[str, Path, None] = None,
checksums: Mapping[str, str] | None = None,
) -> Mapping[str, Any]:
"""Validate one eval row and optionally verify all referenced assets."""
errors = evaluation_row_errors(record)
if errors:
raise EvaluationSchemaError(f"{context}: " + "; ".join(errors))
if checksums is not None and repository_root is None:
raise EvaluationSchemaError(f"{context}: repository_root is required for checksums")
if repository_root is not None:
try:
assets = evaluation_asset_paths(record)
validate_repository_assets(
assets,
repository_root,
checksums=checksums,
file_paths=assets,
context=f"{context} assets",
)
except LayoutError as error:
raise EvaluationSchemaError(str(error)) from error
return record
def validate_evaluation_rows(
records: Iterable[Any],
*,
benchmark: str | None = None,
split: str | None = None,
eval_task: str | None = None,
repository_root: Union[str, Path, None] = None,
checksums: Mapping[str, str] | None = None,
context: str = "evaluation rows",
) -> list[Mapping[str, Any]]:
"""Validate eval rows, dataset membership, IDs, path spelling, and assets."""
expected = {
"benchmark": benchmark,
"split": split,
"eval_task": eval_task,
}
for field, value in expected.items():
if value is not None:
try:
validate_dataset_id(value, context=field)
except LayoutError as error:
raise EvaluationSchemaError(f"{context}: {error}") from error
validated: list[Mapping[str, Any]] = []
row_keys: dict[tuple[str, str, str], int] = {}
path_spellings: dict[str, str] = {}
asset_paths: list[str] = []
dataset_identity: tuple[str, str, str] | None = None
for index, record in enumerate(records, start=1):
row_context = f"{context}:{index}"
validated_record = validate_evaluation_row(record, context=row_context)
for field, value in expected.items():
if value is not None and validated_record.get(field) != value:
raise EvaluationSchemaError(
f"{row_context}: {field} must be {value!r}, "
f"got {validated_record.get(field)!r}"
)
key = (
str(validated_record["benchmark"]),
str(validated_record["split"]),
str(validated_record["sample_id"]),
)
identity = (
str(validated_record["benchmark"]),
str(validated_record["split"]),
str(validated_record["eval_task"]),
)
if dataset_identity is None:
dataset_identity = identity
elif identity != dataset_identity:
raise EvaluationSchemaError(
f"{row_context}: rows must belong to one benchmark/split/task; "
f"expected {dataset_identity[0]}/{dataset_identity[1]}/"
f"{dataset_identity[2]}, got {identity[0]}/{identity[1]}/{identity[2]}"
)
previous = row_keys.get(key)
if previous is not None:
raise EvaluationSchemaError(
f"{row_context}: duplicate sample_id {key[2]!r} for "
f"{key[0]}/{key[1]} (first seen at row {previous})"
)
row_keys[key] = index
for path in evaluation_asset_paths(validated_record):
folded = path.casefold()
previous_path = path_spellings.get(folded)
if previous_path is not None and previous_path != path:
raise EvaluationSchemaError(
f"{row_context}: asset path case collision: "
f"{previous_path!r} and {path!r}"
)
path_spellings[folded] = path
asset_paths.append(path)
validated.append(validated_record)
if checksums is not None and repository_root is None:
raise EvaluationSchemaError(f"{context}: repository_root is required for checksums")
if repository_root is not None:
try:
validate_repository_assets(
asset_paths,
repository_root,
checksums=checksums,
file_paths=asset_paths,
context=f"{context} assets",
)
except LayoutError as error:
raise EvaluationSchemaError(str(error)) from error
return validated
def load_evaluation_jsonl(
path: Union[str, Path],
*,
benchmark: str | None = None,
split: str | None = None,
eval_task: str | None = None,
repository_root: Union[str, Path, None] = None,
checksums: Mapping[str, str] | None = None,
) -> list[Mapping[str, Any]]:
"""Load and validate canonical evaluation rows from a JSONL file."""
input_path = Path(path)
records: list[Any] = []
with input_path.open("r", encoding="utf-8") as handle:
for line_number, line in enumerate(handle, start=1):
if not line.strip():
continue
try:
record = json.loads(line)
except json.JSONDecodeError as error:
raise EvaluationSchemaError(
f"{input_path}:{line_number}: invalid JSON: {error}"
) from error
records.append(record)
return validate_evaluation_rows(
records,
benchmark=benchmark,
split=split,
eval_task=eval_task,
repository_root=repository_root,
checksums=checksums,
context=str(input_path),
)
|