You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: VBench-2.0/README.md
+25-2Lines changed: 25 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,16 +87,39 @@ Evaluate 18 dimensions on different GPUs, one dimension per GPU. You can set the
87
87
bash evaluate.sh --max_parallel_tasks 8
88
88
```
89
89
90
+
### **[New]** Evaluating Single Dimension of Your Own Videos
91
+
We support evaluating any video. Simply provide the path to the video file. There is no requirement on the videos' names except `Diversity` dimension.
92
+
- Note: We support customized videos / prompts for the following dimensions: `'Human_Anatomy', 'Human_Identity', 'Human_Clothes', 'Diversity', 'Multi-View_Consistency'`
93
+
- Note: `Diversity` requires at least 20 videos for one prompt to robustly test the diversity of your model and the naming format should be `prompt-index.mp4` where index ranges from 0 to 19
94
+
- Note: `Diversity` and `Multi-View_Consistency` should be placed in separate folders while `'Human_Anatomy', 'Human_Identity', 'Human_Clothes'` can share a folder (save your time).
95
+
96
+
To evaluate videos with customized input prompt, run our script with `--mode=custom_input`:
97
+
```bash
98
+
python evaluate.py \
99
+
--dimension $DIMENSION \
100
+
--videos_path /path/to/folder_or_video/ \
101
+
--output_path "evaluation_results/$DIMENSION" \
102
+
--mode=custom_input
103
+
```
104
+
For example:
105
+
```bash
106
+
python evaluate.py \
107
+
--dimension "Diversity" \
108
+
--videos_path "YOUR_VIDEO_PATH" \
109
+
--output_path "evaluation_results/Diversity" \
110
+
--mode=custom_input
111
+
```
112
+
90
113
### Evaluating Single Dimension on the Standard Prompt Suite of VBench-2.0
0 commit comments