Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -47,7 +47,7 @@ configs:
|
|
| 47 |
|
| 48 |
### Dataset Summary
|
| 49 |
|
| 50 |
-
PittImageVideoAdsDataset is the image and video advertisement dataset released with *Automatic Understanding of Image and Video Advertisements*.
|
| 51 |
|
| 52 |
This loader exposes two configurations:
|
| 53 |
|
|
@@ -131,14 +131,21 @@ The annotation text and Q/A responses are in English (`en`).
|
|
| 131 |
|
| 132 |
### Data Splits
|
| 133 |
|
| 134 |
-
Both configurations expose one `train` split because the upstream release is an annotation corpus and does not define train, validation, or test partitions.
|
| 135 |
|
| 136 |
| Config | Split | Rows |
|
| 137 |
| --- | --- | ---: |
|
| 138 |
| `image_ads` | train | 64,454 annotated image paths |
|
| 139 |
| `video_ads` | train | 3,477 videos |
|
| 140 |
|
| 141 |
-
The
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
|
| 143 |
## Dataset Creation
|
| 144 |
|
|
|
|
| 47 |
|
| 48 |
### Dataset Summary
|
| 49 |
|
| 50 |
+
PittImageVideoAdsDataset is the image and video advertisement dataset released with *Automatic Understanding of Image and Video Advertisements*. The paper reports 64,832 image advertisements and 3,477 YouTube advertisement videos, with human annotations for topics, sentiments, slogans, persuasive strategies, symbolic references, and action/reason Q/A. This Hugging Face version exposes the public annotation rows that can be reconstructed from the official released files.
|
| 51 |
|
| 52 |
This loader exposes two configurations:
|
| 53 |
|
|
|
|
| 131 |
|
| 132 |
### Data Splits
|
| 133 |
|
| 134 |
+
Both configurations expose one `train` split because the upstream release is an annotation corpus and does not define train, validation, or test partitions. The `train` name is a Hugging Face packaging convention here; it is not an official training partition from the paper.
|
| 135 |
|
| 136 |
| Config | Split | Rows |
|
| 137 |
| --- | --- | ---: |
|
| 138 |
| `image_ads` | train | 64,454 annotated image paths |
|
| 139 |
| `video_ads` | train | 3,477 videos |
|
| 140 |
|
| 141 |
+
The row counts line up with the public files as follows:
|
| 142 |
+
|
| 143 |
+
| Source count | Images | Videos |
|
| 144 |
+
| --- | ---: | ---: |
|
| 145 |
+
| Paper-reported dataset size | 64,832 | 3,477 |
|
| 146 |
+
| Rows emitted by this loader | 64,454 | 3,477 |
|
| 147 |
+
|
| 148 |
+
The image count is lower than the paper-reported total because this loader emits the union of image paths found in the public annotation JSON files. The remaining paper-reported images are not present as annotated rows in those JSON files, so the loader does not synthesize empty examples for them.
|
| 149 |
|
| 150 |
## Dataset Creation
|
| 151 |
|