Datasets:

Modalities:
Text
Formats:
json
Languages:
English
Size:
< 1K
Libraries:
Datasets
pandas
License:

Upload folder using huggingface_hub

#8
by infinitysugam - opened
Files changed (1) hide show
  1. README.md +45 -3
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
+ }