๐ŸŽฌ VEFX-Code

Reference code & inference utilities for VEFX-Bench v1.0 โ€” frozen on 2026-08-03.

๐Ÿ“‚ Browse Files ๐Ÿ“– Full README ๐Ÿ“ฆ Frozen v1.0 Dataset ๐Ÿค– Frozen Reward Model ๐Ÿ† Live VEFX-Leaderboard

๐Ÿ“Š What's in VEFX-Bench

5,049 annotated examples spanning 9 categories & 32 subcategories, evaluated by VEFX-Reward โ€” a VLM-based reward model that scores edits across three dimensions on a 1โ€“4 scale:

Instructional Following (IF)

Does the edit accurately reflect the editing instruction?

Render Quality (RQ)

Visual clarity, temporal consistency, physical plausibility.

Edit Exclusivity (EE)

Were only the intended regions modified, without side-effects?

๐Ÿ—‚๏ธ Frozen v1.0 Task Taxonomy

Attribute Editing ยท Camera Angle Editing ยท Camera Motion Editing ยท Creative Edit ยท Instance Editing ยท Instance Motion Editing ยท Quantity Editing ยท Style Editing ยท Visual Effect Editing

๐Ÿ”’ Reproducibility

Dataset revision3bf997e7eb4fa0d0c2d56cce5ddfccc1dfbda235
benchmark_meta.json SHA-256277d89f5cf23af4163fe6ee120654210f51d19c6dee2d3aa76a3248471d1f333
Reward model revisiona15a8dbe1b3eb07ee0919e8de059f170436ec9ff
model.safetensors SHA-256c3c0d03f770f0a73631206821922213de75413bb517f7d7a2fd9ab1f2c38f59d

๐Ÿ† Model Leaderboard

Overall is the primary GeoAgg metric, not the arithmetic average. For each item j, first compute i=(IF-1)/3, r=(RQ-1)/3, and e=(EE-1)/3, then g_j=1+3ยท(iยฒยทrยทe)^(1/4). The leaderboard uses Overall=(1/300)ยทฮฃg_j: item-level GeoAgg first, then the mean over 300 items. Missing or failed items receive scores (1,1,1). The arithmetic Mean is diagnostic only.

RankModelTypeIF โ†‘RQ โ†‘EE โ†‘GeoAgg โ†‘
๐Ÿฅ‡Kling o3 OmniCommercial3.0333.5883.0433.057
๐ŸฅˆKling o1Commercial3.0403.5342.9762.985
๐Ÿฅ‰Runway Gen-4.5Commercial2.8173.3192.9232.912
4Seedance 2.0Commercial2.8113.4213.0882.766
5Grok ImagineCommercial2.6063.3463.3762.723
6Luma Ray 3Commercial2.7023.4032.7052.717
7UniVideoOpen-source2.2943.2663.0912.516
8Wan 2.6Commercial2.0123.3172.4462.146
9Luma Ray 2Commercial2.0382.5321.3631.804
10VACEOpen-source2.0273.1721.1801.775

๐ŸŽฅ Sample Videos

An example pair from examples/sample_videos/ โ€” original input on the left, edited output on the right.

Original

Edited

๐Ÿš€ Quick Start

pip install -r requirements.txt
python examples/quick_start.py \
    --original examples/sample_videos/original.mp4 \
    --edited   examples/sample_videos/edited.mp4 \
    --instruction "Change the color of the trailer to bright yellow"

See examples/ for batch & multi-GPU scoring scripts.