icomgpu commited on
Commit
4ef5e95
·
verified ·
1 Parent(s): e8c94c2

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +73 -31
README.md CHANGED
@@ -1,31 +1,73 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: transcription
7
- dtype: string
8
- - name: video_segment
9
- dtype: string
10
- - name: subject
11
- dtype: string
12
- - name: category
13
- dtype: string
14
- - name: subcategory
15
- dtype: string
16
- - name: action_description
17
- dtype: string
18
- - name: context_and_comments
19
- dtype: string
20
- splits:
21
- - name: train
22
- num_bytes: 1960308
23
- num_examples: 54
24
- download_size: 1911573
25
- dataset_size: 1960308
26
- configs:
27
- - config_name: default
28
- data_files:
29
- - split: train
30
- path: data/train-*
31
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-classification
5
+ - other
6
+ language:
7
+ - en
8
+ size_categories:
9
+ - n<1K
10
+ dataset_info:
11
+ features:
12
+ - name: image
13
+ dtype: image
14
+ - name: video_segment
15
+ dtype: string
16
+ - name: transcription
17
+ dtype: string
18
+ - name: subject
19
+ dtype: string
20
+ - name: category
21
+ dtype: string
22
+ - name: subcategory
23
+ dtype: string
24
+ - name: action_description
25
+ dtype: string
26
+ - name: context_and_comments
27
+ dtype: string
28
+ splits:
29
+ - name: train
30
+ num_bytes: 0
31
+ num_examples: 54
32
+ ---
33
+
34
+ # Video Dataset - consensus-01
35
+
36
+ ## Dataset Description
37
+
38
+ This dataset contains video frames extracted from annotated video segments, along with annotations, transcriptions, and corresponding video clips.
39
+
40
+ ## Dataset Structure
41
+
42
+ - `frames/` — extracted frames (first frame from each segment)
43
+ - `segments/` — video clips for each annotation interval
44
+ - `annotations/` — original JSON annotation
45
+ - `transcriptions/` — transcription files (`full_transcription.txt` + per segment)
46
+ - `dataset.csv` — mapping between frames, video clips, transcriptions, and metadata (subject, category, subcategory, action_description, context_and_comments)
47
+
48
+ ## Dataset Statistics
49
+
50
+ - **Frames:** 54
51
+ - **Segments:** 18
52
+ - **Unique Labels:** 1
53
+
54
+ ## Dataset Features
55
+
56
+ - **image**: Extracted video frame (JPEG) - first frame from each segment
57
+ - **video_segment**: Path to the corresponding video clip file
58
+ - **transcription**: Text transcription of the audio segment
59
+ - **subject**: Subject of the action (e.g., "Учитель", "Группа учеников")
60
+ - **category**: Category of the action (e.g., "Педагогические действия", "Коммуникативные модальности")
61
+ - **subcategory**: Subcategory (may contain multiple values separated by ";")
62
+ - **action_description**: Description of the action
63
+ - **context_and_comments**: Context and additional comments
64
+
65
+ ## Usage
66
+
67
+ This dataset can be loaded using the Hugging Face `datasets` library:
68
+
69
+ ```python
70
+ from datasets import load_dataset
71
+
72
+ dataset = load_dataset("your-org/video-dataset-consensus-01")
73
+ ```