Datasets:

Languages:
English
Size:
n<1K
ArXiv:
License:
RuoyuFeng commited on
Commit
f4f8076
1 Parent(s): c462136

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +64 -33
README.md CHANGED
@@ -9,60 +9,91 @@ size_categories:
9
  # Dataset Card for Dataset Name
10
 
11
  This is the BalanceCC benchmark published in [CCEdit](https://arxiv.org/pdf/2309.16496.pdf), containing 100 videos with varied attributes, designed to offer a comprehensive platform
12
- for evaluating video editing, focusing on both controllability and creativity.
13
 
14
  ## Dataset Details
15
 
16
  ### Dataset Description
17
 
18
- <!-- Provide a longer summary of what this dataset is. -->
19
-
20
-
 
 
21
 
22
  ## Dataset Structure
23
 
24
- <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
 
 
 
 
 
 
 
 
25
 
26
  [More Information Needed]
27
 
28
 
29
  ### Annotations
30
 
31
- <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  #### Annotation process
34
 
35
- <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
36
 
37
- [More Information Needed]
38
 
39
 
40
  ## Citation
41
-
42
- <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
43
-
44
- **BibTeX:**
45
-
46
- [More Information Needed]
47
-
48
- **APA:**
49
-
50
- [More Information Needed]
51
-
52
- ## Glossary [optional]
53
-
54
- <!-- If relevant, include terms and calculations in this section that can help readers understand the dataset or dataset card. -->
55
-
56
- [More Information Needed]
57
-
58
- ## More Information [optional]
59
-
60
- [More Information Needed]
61
-
62
- ## Dataset Card Authors [optional]
63
-
64
- [More Information Needed]
65
 
66
  ## Dataset Card Contact
67
 
68
- [More Information Needed]
 
9
  # Dataset Card for Dataset Name
10
 
11
  This is the BalanceCC benchmark published in [CCEdit](https://arxiv.org/pdf/2309.16496.pdf), containing 100 videos with varied attributes, designed to offer a comprehensive platform
12
+ for evaluating **generative video editing**, focusing on both controllability and creativity.
13
 
14
  ## Dataset Details
15
 
16
  ### Dataset Description
17
 
18
+ Our objective is to develop a benchmark dataset specifically designed for tasks involving controllable and creative video editing.
19
+ Therefore, we collected 100 videos from different categories, including Animal, Human, Object, and Landscape.
20
+ In addition, for each source video, we provided a text description and graded Camera Motion, Object Motion, and Scene Complexity on a scale from 1 to 3.
21
+ For each video, there are four types of edit along with corresponding target prompts and Fantasy Levels (also ranging from 1 to 3), namely Style Change, Object Change, Background Change, and Compound Change.
22
+ Our aim in doing so is to better compare the strengths and weaknesses of different methods and their areas of expertise, as well as to assist researchers in advancing their techniques.
23
 
24
  ## Dataset Structure
25
 
26
+ **BalanceCC**
27
+ - BalanceCC.json
28
+ - miniBalanceCC.json
29
+ - StatisticalResults.png
30
+ - Result
31
+ - Animal
32
+ - Human
33
+ - Landscape
34
+ - Object
35
 
36
  [More Information Needed]
37
 
38
 
39
  ### Annotations
40
 
41
+ BalanceCC.json and miniBalanceCC.json are lists of dictionaries. Each component includes "Video Name", "Video Type", "Original Prompt", "Editing", "Camera Motion", "Object Motion", and "Scene Complexity".
42
+ "Editing" is a list that contains dictionaries of different editing targets with "Editing Type", "Target Prompt", and "Fantasy Level".
43
+ Here is an example:
44
+ ```
45
+ [
46
+ {
47
+ "Video Name": "blackswan",
48
+ "Video Type": "Animal",
49
+ "Original Prompt": "A black swan swimming in a pond with lush greenery in the background.",
50
+ "Editing": [
51
+ {
52
+ "Editing Type": "Style Change",
53
+ "Target Prompt": "A black swan swimming in a pond with lush greenery in the background, oil painting style.",
54
+ "Fantasy Level": 1
55
+ },
56
+ {
57
+ "Editing Type": "Object Change",
58
+ "Target Prompt": "A majestic flamingo swimming in a pond with lush greenery in the background.",
59
+ "Fantasy Level": 1
60
+ },
61
+ {
62
+ "Editing Type": "Background Change",
63
+ "Target Prompt": "A black swan swimming in a crystal clear lake surrounded by snow-capped mountains.",
64
+ "Fantasy Level": 2
65
+ },
66
+ {
67
+ "Editing Type": "Multiple Change",
68
+ "Target Prompt": "A duck made of origami floating on a pond under a cherry blossom tree in full bloom.",
69
+ "Fantasy Level": 3
70
+ }
71
+ ],
72
+ "Camera Motion": 2,
73
+ "Object Motion": 2,
74
+ "Scene Complexity": 2
75
+ },
76
+ ...
77
+ ]
78
+ ```
79
+
80
 
81
  #### Annotation process
82
 
83
+ The annotation process is conducted via GPT-4V and human revision. Please refer to our paper for detailed information.
84
 
 
85
 
86
 
87
  ## Citation
88
+ ```
89
+ @article{feng2023ccedit,
90
+ title={Ccedit: Creative and controllable video editing via diffusion models},
91
+ author={Feng, Ruoyu and Weng, Wenming and Wang, Yanhui and Yuan, Yuhui and Bao, Jianmin and Luo, Chong and Chen, Zhibo and Guo, Baining},
92
+ journal={arXiv preprint arXiv:2309.16496},
93
+ year={2023}
94
+ }
95
+ ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
 
97
  ## Dataset Card Contact
98
 
99
+ [Ruoyu Feng](ustcfry@mail.ustc.edu.cn)