retkowski commited on
Commit
2c5a859
·
verified ·
1 Parent(s): bbb1203

Add audio config with Audio feature

Browse files
Files changed (1) hide show
  1. README.md +65 -7
README.md CHANGED
@@ -15,23 +15,81 @@ task_categories:
15
  - token-classification
16
  - automatic-speech-recognition
17
  configs:
 
 
 
 
 
 
 
 
18
  - config_name: text
19
  data_files:
20
  - split: train
21
- path: "data/partitions/yt_seg.train.json"
22
  - split: validation
23
- path: "data/partitions/yt_seg.val.json"
24
  - split: test
25
- path: "data/partitions/yt_seg.test.json"
26
-
27
  - config_name: titles
28
  data_files:
29
  - split: train
30
- path: "data/partitions/yt_seg_titles.train.json"
31
  - split: validation
32
- path: "data/partitions/yt_seg_titles.val.json"
33
  - split: test
34
- path: "data/partitions/yt_seg_titles.test.json"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  ---
36
 
37
  # From Text Segmentation to Smart Chaptering: A Novel Benchmark for Structuring Video Transcriptions
 
15
  - token-classification
16
  - automatic-speech-recognition
17
  configs:
18
+ - config_name: audio
19
+ data_files:
20
+ - split: train
21
+ path: audio/train-*
22
+ - split: validation
23
+ path: audio/validation-*
24
+ - split: test
25
+ path: audio/test-*
26
  - config_name: text
27
  data_files:
28
  - split: train
29
+ path: data/partitions/yt_seg.train.json
30
  - split: validation
31
+ path: data/partitions/yt_seg.val.json
32
  - split: test
33
+ path: data/partitions/yt_seg.test.json
 
34
  - config_name: titles
35
  data_files:
36
  - split: train
37
+ path: data/partitions/yt_seg_titles.train.json
38
  - split: validation
39
+ path: data/partitions/yt_seg_titles.val.json
40
  - split: test
41
+ path: data/partitions/yt_seg_titles.test.json
42
+ dataset_info:
43
+ config_name: audio
44
+ features:
45
+ - name: audio
46
+ dtype:
47
+ audio:
48
+ sampling_rate: 16000
49
+ - name: text_ref
50
+ list: string
51
+ - name: text_wt
52
+ list: string
53
+ - name: text_wl
54
+ list: string
55
+ - name: target_binary_ref
56
+ dtype: string
57
+ - name: target_binary_wt
58
+ dtype: string
59
+ - name: target_binary_wl
60
+ dtype: string
61
+ - name: target_text_ref
62
+ dtype: string
63
+ - name: target_text_ts_ref
64
+ dtype: string
65
+ - name: target_ts
66
+ dtype: string
67
+ - name: chapter_titles
68
+ list: string
69
+ - name: channel_id
70
+ dtype: string
71
+ - name: video_id
72
+ dtype: string
73
+ - name: speaker_category
74
+ dtype: string
75
+ - name: dominant_speaker_proportion
76
+ dtype: float64
77
+ - name: num_speakers
78
+ dtype: int64
79
+ - name: duration
80
+ dtype: float64
81
+ splits:
82
+ - name: train
83
+ num_bytes: 62126029382
84
+ num_examples: 16404
85
+ - name: validation
86
+ num_bytes: 5483377302
87
+ num_examples: 1447
88
+ - name: test
89
+ num_bytes: 5658375555
90
+ num_examples: 1448
91
+ download_size: 71469546809
92
+ dataset_size: 73267782239
93
  ---
94
 
95
  # From Text Segmentation to Smart Chaptering: A Novel Benchmark for Structuring Video Transcriptions