Downloads · 30 days
32
30% of all-time downloads
CewEhao/VideoSEAL_8B
VideoSEAL_8B is a video-text-to-text model from CewEhao. Use it for the video-text-to-text task on the model card, and read the license before you ship it in a product. It is set up for transformers. The card lists the license as apache-2.0.
<h2 align="center"🎬 VideoSEAL: Mitigating Evidence Misalignment in Agentic Long Video Understanding by Decoupling Answer Authority</h2
Downloads · 30 days
32
30% of all-time downloads
All-time downloads
105
Public
Parameters
8.2B
16.4 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors16.4 GB · 100%
From the Hugging Face model README
This is the official model card for VideoSEAL: Mitigating Evidence Misalignment in Agentic Long Video Understanding by Decoupling Answer Authority (ICML 2026).
VideoSEAL provides offline build utilities for long video indexing:
indexes/semantic/<video_id>/full_story.txt summaryscripts/videoseal/test/third_party/video-subtitle-extractor/scripts/.cd /path/to/VideoSEAL
export MLLM_API_KEY="sk_your_api_key"
export EMBEDDING_API_KEY="sk_your_api_key"
export AGENT_LLM_API_KEY="sk_your_api_key"
export VISUAL_INSPECT_API_KEY="sk_your_api_key"
VIDEO=/path/to/video.mp4 BENCHMARK=LVBench ./scripts/run_offline_build.sh
/root/miniconda3/envs/rllm/bin/python -m unittest discover -s test -v
This repo vendors a minimal copy of the rllm/ + verl/ Python packages (under the repo root)
to make the video tool-agent GRPO workflow runnable without an extra repo checkout.
conda create -n videoseal python=3.12 -y
conda activate videoseal
pip install vllm==0.11.0
cd rllm
pip install -e .
cd ../verl
pip install -e .
scripts/train/run_video_workflow_grpo.shcd /path/to/VideoSEAL
# Export real API keys/endpoints in your environment before launching.
TRAIN_PARQUET='["/path/to/train.parquet"]' \
VAL_PARQUET='/path/to/val.parquet' \
MODEL_PATH='Qwen/Qwen3-8B' \
./scripts/train/run_video_workflow_grpo.sh train
./scripts/train/run_video_workflow_grpo.sh test-reward
pytest -q tests/rewards/test_video_reward_tool_env_integration.py