File size: 1,262 Bytes
872072f
 
 
bc12a14
872072f
bc12a14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
license: apache-2.0
task_categories:
  - summarization
language:
  - en
---

# 📚 Clip-CC Dataset

**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.

---

## 🧾 Dataset Summary

- 🎞️ 200 videos: Named `1.mp4` to `200.mp4`s
- 📝 Each video has a concise human-written summary
- 📂 File references stored in a JSONL file (`data.jsonl`) with paths to each video

---

## 💡 Use Cases

- Video summarization and caption generation
- Vision-Language alignment
- Video QA and downstream educational AI tasks
- Fine-tuning multimodal models (e.g., Flamingo, Video-BERT, LLaVA)

---

## 📦 Dataset Structure

Each entry has:

| Field     | Description                              |
|-----------|------------------------------------------|
| `id`      | Unique ID, e.g., `video_001`             |
| `video`   | Relative path to video file              |
| `summary` | Human-written summary of video content   |

### 🔍 Example

```json
{
  "id": "video_001",
  "video": "videos/1.mp4",
  "summary": "An introduction to gravitational force using animations."
}