jpatel0057
commited on
Commit
•
17759a1
1
Parent(s):
d91b354
Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
---
|
|
|
2 |
dataset_info:
|
3 |
- config_name: face_embeddings
|
4 |
features:
|
@@ -90,3 +91,91 @@ configs:
|
|
90 |
- split: train
|
91 |
path: transcripts/train-*
|
92 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: cc-by-nc-sa-4.0
|
3 |
dataset_info:
|
4 |
- config_name: face_embeddings
|
5 |
features:
|
|
|
91 |
- split: train
|
92 |
path: transcripts/train-*
|
93 |
---
|
94 |
+
|
95 |
+
![iDRAMA-rumble-2024 Header](https://huggingface.co/datasets/iDRAMALab/iDRAMA-rumble-2024/resolve/main/iDRAMA-rumble-2024.jpeg?download=true)
|
96 |
+
|
97 |
+
# Dataset Summary
|
98 |
+
|
99 |
+
`iDRAMA-rumble-2024` is a large-scale dataset of 6,735 podcast videos from Rumble, an alternative Youtube-like platform. Using state-of-the-art models, we extract information across three modalities: 1) text, 2) audio, and 3) video. We detail the methodology for extracting information from podcast videos in the paper and release a first-of-its-kind dataset including data from different modalities:
|
100 |
+
- **Metadata:** Details about podcast videos, e.g., channel name, video name, video description, and more.
|
101 |
+
- **Text:** Transcription (i.e., speech-to-text) of podcast videos.
|
102 |
+
- **Audio:** Speaker diarization information providing speaker detection over time for each video.
|
103 |
+
- **Video:** Sampled representative video frames from each video, totaling 200K images. We also detect more than 400K non-unique faces from these images and release face embeddings.
|
104 |
+
|
105 |
+
| Repo-links | Purpose |
|
106 |
+
|:------|:--------------|
|
107 |
+
| [Zenodo](https://zenodo.org/records/10515991) | Coming soon |
|
108 |
+
| [Github](https://github.com/idramalab/iDRAMA-rumble-2024) | The main repository of this dataset, where we provide code-snippets to get started with this dataset. |
|
109 |
+
| [Huggingface](https://hf.co/datasets/iDRAMALab/iDRAMA-rumble-2024) | On Huggingface, we provide a dataset that can be accessed through Huggingface APIs. |
|
110 |
+
|
111 |
+
- **Rumble platform:** [Rumble](https://rumble.com)
|
112 |
+
- **Link to paper:** [CySoc 2024](https://workshop-proceedings.icwsm.org/abstract.php?id=2024_07)
|
113 |
+
- **License:** [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en)
|
114 |
+
|
115 |
+
# Quick start with Datasets
|
116 |
+
|
117 |
+
Install `Datasets` module by `pip install datasets` and then use the following code:
|
118 |
+
|
119 |
+
```python
|
120 |
+
from datasets import load_dataset
|
121 |
+
|
122 |
+
# Download & Load complete dataset
|
123 |
+
dataset = load_dataset("iDRAMALab/iDRAMA-rumble-2024")
|
124 |
+
|
125 |
+
# Load dataset with specific config
|
126 |
+
dataset = load_dataset("iDRAMALab/iDRAMA-rumble-2024", name="transcripts")
|
127 |
+
```
|
128 |
+
|
129 |
+
> More code-snippets to load the different variant of datasets efficiently are available on [Github](https://github.com/idramalab/iDRAMA-scored-2024) rpository.
|
130 |
+
|
131 |
+
# Dataset Info
|
132 |
+
|
133 |
+
Dataset is organized by yealry-comments and submissions -- comments-2020, comments-2021, comments-2022, comments-2023, submissions-2020-t0-2023.
|
134 |
+
|
135 |
+
<table style="width:50%">
|
136 |
+
<tr>
|
137 |
+
<th style="text-align:left">Config</th>
|
138 |
+
<th style="text-align:left">Data-points</th>
|
139 |
+
</tr>
|
140 |
+
<tr>
|
141 |
+
<td>Podcast videos</td>
|
142 |
+
<td>6,735</td>
|
143 |
+
</tr>
|
144 |
+
<tr>
|
145 |
+
<td>Representative images</td>
|
146 |
+
<td>252,387</td>
|
147 |
+
</tr>
|
148 |
+
<tr>
|
149 |
+
<td>Face embeddings</td>
|
150 |
+
<td>399,333</td>
|
151 |
+
</tr>
|
152 |
+
<tr>
|
153 |
+
<td>Transcripts & Speaker diarization</td>
|
154 |
+
<td>6,735</td>
|
155 |
+
</tr>
|
156 |
+
</table>
|
157 |
+
<br>
|
158 |
+
|
159 |
+
# Version
|
160 |
+
|
161 |
+
- **Maintenance Status:** Active
|
162 |
+
- **Version Details:**
|
163 |
+
- *Current Version:* v1.0.0
|
164 |
+
- *First Release:* 06/03/2024
|
165 |
+
- *Last Update:* 06/03/2024
|
166 |
+
|
167 |
+
# Authorship
|
168 |
+
This dataset is published at "Workshop Proceedings of the 18th International AAAI Conference on Web and Social Media" hosted at Buffalo, NY, USA.
|
169 |
+
|
170 |
+
- **Academic Organization:** [iDRAMA Lab](https://idrama.science/people/)
|
171 |
+
- **Authors:** Utkucan Balci, Jay Patel, Berkan Balci, Jeremy Blackburn
|
172 |
+
- **Affiliation:** Binghamton University
|
173 |
+
|
174 |
+
# Licensing
|
175 |
+
This dataset is available for free to use under terms of the non-commercial license [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.en).
|
176 |
+
|
177 |
+
# Citation
|
178 |
+
|
179 |
+
```bibtex
|
180 |
+
Coming soon
|
181 |
+
```
|