Upload folder using huggingface_hub
#8
by
infinitysugam - opened
README.md
CHANGED
|
@@ -1,7 +1,49 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
task_categories:
|
| 4 |
-
- summarization
|
| 5 |
language:
|
| 6 |
-
- en
|
| 7 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
task_categories:
|
| 4 |
+
- summarization
|
| 5 |
language:
|
| 6 |
+
- en
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# ๐ Clip-CC Dataset
|
| 10 |
+
|
| 11 |
+
**Clip-CC** is a high-quality dataset of 200 short educational videos (1 minute 30 seconds each) paired with human-written summaries. Itโs designed for tasks like video summarization, video-language alignment, and multimodal learning.
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
## ๐งพ Dataset Summary
|
| 16 |
+
|
| 17 |
+
- ๐๏ธ 200 videos: Named `1.mp4` to `200.mp4`s
|
| 18 |
+
- ๐ Each video has a concise human-written summary
|
| 19 |
+
- ๐ File references stored in a JSONL file (`data.jsonl`) with paths to each video
|
| 20 |
+
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
## ๐ก Use Cases
|
| 24 |
+
|
| 25 |
+
- Video summarization and caption generation
|
| 26 |
+
- Vision-Language alignment
|
| 27 |
+
- Video QA and downstream educational AI tasks
|
| 28 |
+
- Fine-tuning multimodal models (e.g., Flamingo, Video-BERT, LLaVA)
|
| 29 |
+
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
## ๐ฆ Dataset Structure
|
| 33 |
+
|
| 34 |
+
Each entry has:
|
| 35 |
+
|
| 36 |
+
| Field | Description |
|
| 37 |
+
|-----------|------------------------------------------|
|
| 38 |
+
| `id` | Unique ID, e.g., `video_001` |
|
| 39 |
+
| `video` | Relative path to video file |
|
| 40 |
+
| `summary` | Human-written summary of video content |
|
| 41 |
+
|
| 42 |
+
### ๐ Example
|
| 43 |
+
|
| 44 |
+
```json
|
| 45 |
+
{
|
| 46 |
+
"id": "video_001",
|
| 47 |
+
"video": "videos/1.mp4",
|
| 48 |
+
"summary": "An introduction to gravitational force using animations."
|
| 49 |
+
}
|