Add task category and links to paper/project/code

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +25 -5
README.md CHANGED
@@ -1,13 +1,33 @@
 
 
 
 
 
1
  # RefVIE-Bench
2
 
3
- This repo contains RefVIE-Bench from paper https://arxiv.org/abs/2603.02175.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
 
5
  ## Directory layout
6
 
7
- - `refvie_bench.yaml`
8
- - `ref_images/background/`
9
- - `ref_images/subjects/`
10
- - `source_videos/`
11
 
12
  ## Included media
13
 
 
1
+ ---
2
+ task_categories:
3
+ - text-to-video
4
+ ---
5
+
6
  # RefVIE-Bench
7
 
8
+ [**Project Page**](https://showlab.github.io/Kiwi-Edit/) | [**Paper**](https://arxiv.org/abs/2603.02175) | [**GitHub**](https://github.com/showlab/Kiwi-Edit)
9
+
10
+ RefVIE-Bench is a comprehensive evaluation benchmark introduced in the paper [Kiwi-Edit: Versatile Video Editing via Instruction and Reference Guidance](https://arxiv.org/abs/2603.02175). It is specifically designed to assess instruction-reference-following capabilities in video editing models, featuring source videos, reference images (for both subjects and backgrounds), and natural language instructions.
11
+
12
+ ## Sample Usage
13
+
14
+ To run inference on this benchmark using the official Kiwi-Edit framework, you can use the following command:
15
+
16
+ ```bash
17
+ python infer.py \
18
+ --ckpt_path path_to_ckpt \
19
+ --bench refvie \
20
+ --max_frame 81 \
21
+ --max_pixels 921600 \
22
+ --save_dir ./infer_results/exp_name/
23
+ ```
24
 
25
  ## Directory layout
26
 
27
+ - `refvie_bench.yaml`: Configuration file containing mapping for instructions, reference images, and source videos.
28
+ - `ref_images/background/`: Reference images used for background-guided editing.
29
+ - `ref_images/subjects/`: Reference images used for subject-guided editing.
30
+ - `source_videos/`: The original video sequences.
31
 
32
  ## Included media
33