Enhance dataset card: Add paper/code links, task categories, detailed description, and sample usage

#2
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +75 -4
README.md CHANGED
@@ -1,10 +1,81 @@
1
  ---
2
  license: cc-by-nc-4.0
 
 
 
 
 
 
 
 
3
  ---
4
 
5
- The data from our video dataset is stored in **VADB.zip**
6
 
7
- Our *train.csv* contains all annotated data related to aesthetic scores.
8
- For text annotations such as comments and tags mentioned in the paper, please refer to *merged_comment_tag.json*.
9
 
10
- [2025/10/22 UPDATE] The annotation files are fully open-sourced, but due to copyright issues with some videos, 2,609 video clips have been retained and not open-sourced, while the remaining 7,881 video clips have been fully released.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-4.0
3
+ task_categories:
4
+ - video-classification
5
+ tags:
6
+ - aesthetics
7
+ - video-quality
8
+ - multimedia
9
+ language:
10
+ - en
11
  ---
12
 
13
+ This repository introduces **VADB**, a large-scale video aesthetics database, presented in the paper [VADB: A Large-Scale Video Aesthetic Database with Professional and Multi-Dimensional Annotations](https://huggingface.co/papers/2510.25238).
14
 
15
+ The VADB dataset is designed to provide comprehensive resources for researchers and developers interested in video aesthetics analysis, computer vision, and multimedia content assessment.
 
16
 
17
+ The associated code and models can be found on GitHub: [https://github.com/BestiVictory/VADB](https://github.com/BestiVictory/VADB)
18
+
19
+ ## Dataset Details
20
+ The data from our video dataset is stored in **VADB.zip**.
21
+
22
+ The VADB dataset includes:
23
+ * **7,881 videos** covering diverse video styles and content categories.
24
+ * **Detailed language comments** for each video.
25
+ * **Aesthetic scores across 7-11 dimensions**, comprehensively covering the aesthetic attribute features of videos.
26
+ * **Rich objective tags**, annotating video shooting techniques and other objective dimensions.
27
+
28
+ Our `train.csv` contains all annotated data related to aesthetic scores. For text annotations such as comments and tags mentioned in the paper, please refer to `merged_comment_tag.json`.
29
+
30
+ [2025/10/22 UPDATE] The annotation files are fully open-sourced, but due to copyright issues with some videos, 2,609 video clips have been retained and not open-sourced, while the remaining 7,881 video clips have been fully released.
31
+
32
+ ## Getting Started & Sample Usage
33
+
34
+ ### 🚀 Install Dependencies
35
+ First, install the required dependencies (From CLIP):
36
+ ```bash
37
+ conda install --yes -c pytorch pytorch=1.7.1 torchvision cudatoolkit=11.0
38
+ pip install ftfy regex tqdm
39
+ pip install opencv-python boto3 requests pandas
40
+ ```
41
+
42
+ ### 📦 Download the Dataset
43
+ Download the VADB dataset from Hugging Face:
44
+ ```bash
45
+ git lfs install
46
+ git clone https://huggingface.co/datasets/BestiVictoryLab/VADB
47
+ ```
48
+
49
+ ### 🧠 VADB-Net Scoring Models
50
+ The VADB project also provides **VADB-Net**, a novel video aesthetics scoring framework. You will need to load a pre-trained video encoder model (details and link provided in the [GitHub repository's Video Encoder section](https://github.com/BestiVictory/VADB#video-encoder)). This encoder extracts aesthetic feature vectors from videos and serves as the foundational component for all scoring models.
51
+
52
+ The repository is structured into three main components for different scoring tasks:
53
+
54
+ #### 1. Overall Aesthetic Score
55
+ - **Folder**: `1TotalScore`
56
+ - **Model**: Predicts the overall aesthetic score of videos
57
+ - **Usage**:
58
+ ```bash
59
+ cd 1TotalScore
60
+ python 1TotalScore.py
61
+ ```
62
+
63
+ #### 2. General Attribute Scores
64
+ - **Folder**: `2GeneralAttribute`
65
+ - **Model**: Evaluates general aesthetic attributes of videos
66
+ - **Evaluation Dimensions**: Composition, Shot Size, Lighting, Visual Tone, Color, Depth of Field
67
+ - **Usage**:
68
+ ```bash
69
+ cd 2GeneralAttribute
70
+ python 2GeneralAttribute.py
71
+ ```
72
+
73
+ #### 3. Human-Centric Attribute Scores
74
+ - **Folder**: `3HumanAttribute`
75
+ - **Model**: Focuses on evaluating specific aesthetic attributes of human subjects
76
+ - **Evaluation Dimensions**: Expression, Movement, Costume, Makeup
77
+ - **Usage**:
78
+ ```bash
79
+ cd 3HumanAttribute
80
+ python 3HumanAttribute.py
81
+ ```