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
| # Copyright 2024 Bytedance Ltd. and/or its affiliates | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| from typing import Any | |
| import numpy as np | |
| import torch | |
| from ..protocol import DataProto | |
| def reduce_metrics(metrics: dict[str, list[Any]]) -> dict[str, Any]: | |
| return {key: np.mean(value) for key, value in metrics.items()} | |
| def compute_length_metrics(batch: DataProto) -> dict[str, Any]: | |
| max_response_length = batch.batch["responses"].size(-1) | |
| max_prompt_length = batch.batch["attention_mask"].size(-1) - max_response_length | |
| prompt_length = batch.batch["attention_mask"][:, :-max_response_length].sum(-1).float() | |
| response_length = batch.batch["attention_mask"][:, -max_response_length:].sum(-1).float() | |
| return { | |
| # response length | |
| "response_length/mean": torch.mean(response_length).detach().item(), | |
| "response_length/max": torch.max(response_length).detach().item(), | |
| "response_length/min": torch.min(response_length).detach().item(), | |
| "response_length/clip_ratio": torch.eq(response_length, max_response_length).float().mean().detach().item(), | |
| # prompt length | |
| "prompt_length/mean": torch.mean(prompt_length).detach().item(), | |
| "prompt_length/max": torch.max(prompt_length).detach().item(), | |
| "prompt_length/min": torch.min(prompt_length).detach().item(), | |
| "prompt_length/clip_ratio": torch.eq(prompt_length, max_prompt_length).float().mean().detach().item(), | |
| } | |
| def compute_data_metrics(batch: DataProto, use_critic: bool = False) -> dict[str, Any]: | |
| sequence_score = batch.batch["token_level_scores"].sum(-1) | |
| sequence_reward = batch.batch["token_level_rewards"].sum(-1) | |
| advantages = batch.batch["advantages"] | |
| returns = batch.batch["returns"] | |
| max_response_length = batch.batch["responses"].size(-1) | |
| response_mask = batch.batch["attention_mask"][:, -max_response_length:].bool() | |
| valid_adv = torch.masked_select(advantages, response_mask) | |
| valid_returns = torch.masked_select(returns, response_mask) | |
| if use_critic: | |
| values = batch.batch["values"] | |
| valid_values = torch.masked_select(values, response_mask) | |
| return_diff_var = torch.var(valid_returns - valid_values) | |
| return_var = torch.var(valid_returns) | |
| return { | |
| # score | |
| "critic/score/mean": torch.mean(sequence_score).detach().item(), | |
| "critic/score/std": torch.std(sequence_score, unbiased=False).detach().item(), | |
| "critic/score/var": torch.var(sequence_score, unbiased=False).detach().item(), | |
| "critic/score/max": torch.max(sequence_score).detach().item(), | |
| "critic/score/min": torch.min(sequence_score).detach().item(), | |
| # reward | |
| "critic/rewards/mean": torch.mean(sequence_reward).detach().item(), | |
| "critic/rewards/std": torch.std(sequence_reward, unbiased=False).detach().item(), | |
| "critic/rewards/max": torch.max(sequence_reward).detach().item(), | |
| "critic/rewards/min": torch.min(sequence_reward).detach().item(), | |
| # adv | |
| "critic/advantages/mean": torch.mean(valid_adv).detach().item(), | |
| "critic/advantages/std": torch.std(valid_adv, unbiased=False).detach().item(), | |
| "critic/advantages/max": torch.max(valid_adv).detach().item(), | |
| "critic/advantages/min": torch.min(valid_adv).detach().item(), | |
| # returns | |
| "critic/returns/mean": torch.mean(valid_returns).detach().item(), | |
| "critic/returns/max": torch.max(valid_returns).detach().item(), | |
| "critic/returns/min": torch.min(valid_returns).detach().item(), | |
| **( | |
| { | |
| # values | |
| "critic/values/mean": torch.mean(valid_values).detach().item(), | |
| "critic/values/max": torch.max(valid_values).detach().item(), | |
| "critic/values/min": torch.min(valid_values).detach().item(), | |
| # vf explained var | |
| "critic/vf_explained_var": (1.0 - return_diff_var / (return_var + 1e-5)).detach().item(), | |
| } | |
| if use_critic | |
| else {} | |
| ), | |
| **compute_length_metrics(batch), | |
| } | |
| def compute_timing_metrics(batch: DataProto, timing_raw: dict[str, float]) -> dict[str, Any]: | |
| num_response_tokens = torch.sum(batch.batch["response_mask"]).item() | |
| # compute num_overall_tokens: use global_token_num if available, otherwise compute from attention_mask | |
| if "global_token_num" in batch.meta_info: | |
| num_overall_tokens = sum(batch.meta_info["global_token_num"]) | |
| else: | |
| num_overall_tokens = torch.sum(batch.batch["attention_mask"]).item() | |
| num_tokens_of_section = { | |
| **dict.fromkeys(["gen", "reward"], num_response_tokens), | |
| **dict.fromkeys(["rollout_generate_part", "reward_compute_part"], num_response_tokens), | |
| **dict.fromkeys(["ref", "old", "values", "adv", "update_critic", "update_actor"], num_overall_tokens), | |
| } | |
| return { | |
| **{f"timing_s/{name}": value for name, value in timing_raw.items()}, | |
| **{ | |
| f"timing_per_token_ms/{name}": timing_raw[name] * 1000 / num_tokens_of_section[name] | |
| for name in set(num_tokens_of_section.keys()) & set(timing_raw.keys()) | |
| }, | |
| } | |
| def compute_throughout_metrics(batch: DataProto, timing_raw: dict[str, float], num_gpus: int) -> dict[str, Any]: | |
| total_num_tokens = sum(batch.meta_info["global_token_num"]) | |
| time = timing_raw["step"] | |
| return { | |
| "perf/total_num_tokens": total_num_tokens, | |
| "perf/time_per_step": time, | |
| "perf/throughput": total_num_tokens / (time * num_gpus), | |
| } | |