Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
fb43736
1
Parent(s):
d985ebc
Add dataset descriptions for VoxPopuli, COCO 2014, and SA-Video
Browse files- backend/descriptions.py +31 -10
backend/descriptions.py
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
DESCRIPTIONS = {
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
}
|
| 7 |
|
| 8 |
METRIC_DESCRIPTIONS = {
|
|
@@ -182,10 +182,31 @@ MODEL_DESCRIPTIONS = {
|
|
| 182 |
}
|
| 183 |
|
| 184 |
DATASET_DESCRIPTIONS = {
|
| 185 |
-
|
| 186 |
-
|
| 187 |
-
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 191 |
}
|
|
|
|
| 1 |
DESCRIPTIONS = {
|
| 2 |
+
"leaderboard_header": {
|
| 3 |
+
"description": "A leaderboard for evaluating the performance of watermarking methods using the OmniSealBench framework.",
|
| 4 |
+
"link": "https://github.com/facebookresearch/omnisealbench/blob/main/README.md",
|
| 5 |
+
}
|
| 6 |
}
|
| 7 |
|
| 8 |
METRIC_DESCRIPTIONS = {
|
|
|
|
| 182 |
}
|
| 183 |
|
| 184 |
DATASET_DESCRIPTIONS = {
|
| 185 |
+
"ravdess_1k/audio": {
|
| 186 |
+
"full_name": "RAVDESS Emotional speech audio",
|
| 187 |
+
"description": "The RAVDESS dataset contains emotional speech and song recordings, which can be used for audio watermarking tasks. The 1K version includes 1000 samples.",
|
| 188 |
+
"paper_link": "https://doi.org/10.5281/zenodo.1188976",
|
| 189 |
+
"github_link": "",
|
| 190 |
+
},
|
| 191 |
+
|
| 192 |
+
"voxpopuli_1k/audio": {
|
| 193 |
+
"full_name": "VoxPopuli 1K Audio",
|
| 194 |
+
"description": "The VoxPopuli dataset is a large collection of audio recordings from various speakers, suitable for audio watermarking tasks. The 1K version includes 1000 samples.",
|
| 195 |
+
"paper_link": "https://arxiv.org/abs/2101.00390",
|
| 196 |
+
"github_link": "",
|
| 197 |
+
},
|
| 198 |
+
|
| 199 |
+
"val2014_1k/image": {
|
| 200 |
+
"full_name": "COCO 2014 Validation Set",
|
| 201 |
+
"description": "The COCO 2014 validation set is a widely used dataset for image watermarking tasks. It contains a diverse set of images with various objects and scenes.",
|
| 202 |
+
"paper_link": "https://arxiv.org/abs/1405.0312",
|
| 203 |
+
"github_link": "",
|
| 204 |
+
},
|
| 205 |
+
|
| 206 |
+
"sav_val_full_v2/video": {
|
| 207 |
+
"full_name": "SA-Video Dataset",
|
| 208 |
+
"description": "The SA-Video dataset is a collection of videos designed for video watermarking tasks. It includes a variety of video content suitable for testing watermarking techniques.",
|
| 209 |
+
"paper_link": "https://arxiv.org/abs/2401.17264",
|
| 210 |
+
"github_link": "",
|
| 211 |
+
},
|
| 212 |
}
|