Quazitron420 commited on
Commit
78e2ce4
·
verified ·
1 Parent(s): 953593d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +63 -23
README.md CHANGED
@@ -1,23 +1,63 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: annotation
7
- dtype: string
8
- - name: transcription
9
- dtype: string
10
- - name: video_segment
11
- dtype: string
12
- splits:
13
- - name: train
14
- num_bytes: 1893672
15
- num_examples: 42
16
- download_size: 1892151
17
- dataset_size: 1893672
18
- configs:
19
- - config_name: default
20
- data_files:
21
- - split: train
22
- path: data/train-*
23
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-classification
5
+ - other
6
+ task_ids:
7
+ - image-classification-other
8
+ language:
9
+ - en
10
+ size_categories:
11
+ - n<1K
12
+ dataset_info:
13
+ features:
14
+ - name: image
15
+ dtype: image
16
+ - name: annotation
17
+ dtype: string
18
+ - name: transcription
19
+ dtype: string
20
+ - name: video_segment
21
+ dtype: string
22
+ splits:
23
+ - name: train
24
+ num_bytes: 0
25
+ num_examples: 42
26
+ ---
27
+
28
+ # Video Dataset - pre1_test
29
+
30
+ ## Dataset Description
31
+
32
+ This dataset contains video frames extracted from annotated video segments, along with annotations, transcriptions, and corresponding video clips.
33
+
34
+ ## Dataset Structure
35
+
36
+ - `frames/` — extracted frames grouped by role (`start`, `middle`, `end`)
37
+ - `segments/` — video clips for each annotation interval
38
+ - `annotations/` — original JSON annotation
39
+ - `transcriptions/` — transcription files (`full_transcription.txt` + per segment)
40
+ - `dataset.csv` — mapping between frames, annotations, video clips, and segment transcription
41
+
42
+ ## Dataset Statistics
43
+
44
+ - **Frames:** 42
45
+ - **Segments:** 14
46
+ - **Unique Labels:** 7
47
+
48
+ ## Dataset Features
49
+
50
+ - **image**: Extracted video frame (JPEG)
51
+ - **annotation**: Label/annotation for the frame segment
52
+ - **transcription**: Text transcription of the audio segment
53
+ - **video_segment**: Path to the corresponding video clip file
54
+
55
+ ## Usage
56
+
57
+ This dataset can be loaded using the Hugging Face `datasets` library:
58
+
59
+ ```python
60
+ from datasets import load_dataset
61
+
62
+ dataset = load_dataset("your-org/video-dataset-pre1_test")
63
+ ```