Update dataset card with paper link, task category, and sample usage

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +49 -31
README.md CHANGED
@@ -1,20 +1,27 @@
1
  ---
 
 
2
  license: apache-2.0
 
 
3
  task_categories:
4
- - video-classification
5
- language:
6
- - en
7
  tags:
8
- - video-editing
9
- - benchmark
10
- - reward-model
11
- size_categories:
12
- - n<1K
13
  ---
14
 
15
- # VEFX-Bench: Video Editing Quality Benchmark
16
 
17
- VEFX-Bench is a benchmark dataset for evaluating video editing model quality. It contains **300 original source videos** with editing instructions across **9 task categories**.
 
 
 
 
 
 
 
18
 
19
  ## Dataset Structure
20
 
@@ -22,33 +29,44 @@ VEFX-Bench is a benchmark dataset for evaluating video editing model quality. It
22
  - `prompts.json`: Editing instructions indexed by video number
23
  - `benchmark_meta.json`: Metadata including category labels and filename mapping
24
 
25
- ## Usage
 
 
26
 
27
- 1. Download all 300 videos and `prompts.json`
28
- 2. Apply your video editing model following each prompt
29
- 3. Save edited videos as `0000.mp4` through `0299.mp4` (matching index)
30
- 4. Submit the zip to the [VEFX-Leaderboard](https://github.com/YOUR_ORG/VEFX-Leaderboard)
31
 
32
- ## Evaluation Dimensions
33
 
34
- - **IF (Instructional Following)**: How well the edit follows the instruction (1-4)
35
- - **RQ (Render Quality)**: Visual quality and temporal consistency (1-4)
36
- - **EE (Edit Exclusivity)**: Preservation of unrelated content (1-4)
 
 
 
 
 
37
 
38
  ## Task Categories
39
 
40
- | Category | Count |
41
- |----------|-------|
42
- | Style Transfer | varies |
43
- | Object Manipulation | varies |
44
- | Background Change | varies |
45
- | Color/Lighting | varies |
46
- | Motion/Animation | varies |
47
- | Text/Overlay | varies |
48
- | Composition | varies |
49
- | Removal/Inpainting | varies |
50
- | Complex/Multi-step | varies |
51
 
52
  ## Citation
53
 
54
- Coming soon.
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: apache-2.0
5
+ size_categories:
6
+ - 1K<n<10K
7
  task_categories:
8
+ - video-text-to-text
 
 
9
  tags:
10
+ - video-editing
11
+ - benchmark
12
+ - reward-model
 
 
13
  ---
14
 
15
+ # VEFX-Bench: A Holistic Benchmark for Generic Video Editing and Visual Effects
16
 
17
+ [Paper](https://huggingface.co/papers/2604.16272) | [GitHub](https://github.com/Visko-Platform/VEFX-Bench) | [Project Page](https://xiangbogaobarry.github.io/VEFX-Bench/) | [Leaderboard](https://vefx-leaderboard.com/)
18
+
19
+ **VEFX-Bench** is a comprehensive benchmark for evaluating text-driven video editing and visual effects. It is derived from the **VEFX-Dataset**, a human-annotated collection of 5,049 video editing examples across 9 major categories and 32 subcategories.
20
+
21
+ The benchmark provides a curated set of 300 video-prompt pairs for standardized comparison, evaluated across three decoupled dimensions:
22
+ - **Instructional Following (IF)**: How well the edit follows the instruction.
23
+ - **Render Quality (RQ)**: Visual clarity and temporal consistency.
24
+ - **Edit Exclusivity (EE)**: Preservation of unrelated content (edit locality).
25
 
26
  ## Dataset Structure
27
 
 
29
  - `prompts.json`: Editing instructions indexed by video number
30
  - `benchmark_meta.json`: Metadata including category labels and filename mapping
31
 
32
+ ## Sample Usage
33
+
34
+ You can use the associated [VEFX-Reward](https://huggingface.co/xiangbog/VEFX-Reward-4B) model to score your video edits using the following code:
35
 
36
+ ```python
37
+ from vefx_reward import VEFXReward
 
 
38
 
39
+ model = VEFXReward("xiangbog/VEFX-Reward-4B", device="cuda")
40
 
41
+ scores = model.score(
42
+ original_video="path/to/original_video.mp4",
43
+ edited_video="path/to/edited_video.mp4",
44
+ instruction="Remove the woman with the grey backpack walking on the right side of the frame.",
45
+ )
46
+ print(scores)
47
+ # Example Output: {'IF': 2.34, 'RQ': 1.93, 'EE': 1.82, 'Overall': 6.09}
48
+ ```
49
 
50
  ## Task Categories
51
 
52
+ The benchmark covers 9 major editing categories:
53
+ - Style Transfer
54
+ - Object Manipulation
55
+ - Background Change
56
+ - Color/Lighting
57
+ - Motion/Animation
58
+ - Text/Overlay
59
+ - Composition
60
+ - Removal/Inpainting
61
+ - Complex/Multi-step
 
62
 
63
  ## Citation
64
 
65
+ ```bibtex
66
+ @article{gao2025vefxbench,
67
+ title={VEFX-Bench: Benchmarking Generic Video Editing and Visual Effects},
68
+ author={Xiangbo Gao and Sicong Jiang and Bangya Liu and Xinghao Chen and Minglai Yang and Siyuan Yang and Mingyang Wu and Jiongze Yu and Qi Zheng and Haozhi Wang and Jiayi Zhang and Jared Yang and Jie Yang and Zihan Wang and Qing Yin and Zhengzhong Tu},
69
+ journal={arXiv preprint arXiv:2604.16272},
70
+ year={2026}
71
+ }
72
+ ```