SushantGautam commited on
Commit
816fbed
1 Parent(s): 9d2e8e5

Create dataset.yaml

Browse files
Files changed (1) hide show
  1. dataset.yaml +89 -0
dataset.yaml ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ languages:
3
+ - en
4
+ licenses:
5
+ - cc-by-4.0
6
+ multilinguality:
7
+ - multilingual
8
+ size_categories:
9
+ - 1K<n<10K
10
+ source_datasets:
11
+ - original
12
+ task_categories:
13
+ - automatic-speech-recognition
14
+ task_ids:
15
+ - speech-recognition
16
+ pretty_name: Whisper ASR Dataset
17
+ configs:
18
+ - name: whisper_v1
19
+ description: Contains ASR from Whisper v1.
20
+ - name: whisper_v1_en
21
+ description: English-translated datasets from Whisper v1.
22
+ - name: whisper_v2
23
+ description: Contains ASR from Whisper v2.
24
+ - name: whisper_v2_en
25
+ description: English-translated datasets from Whisper v2.
26
+ - name: whisper_v3
27
+ description: Contains ASR from Whisper v3.
28
+ dataset_info:
29
+ features:
30
+ - name: segments
31
+ feature: {
32
+ "segment index (int)": [
33
+ "start time in second (float)",
34
+ "end time in second (float)",
35
+ "transcribed text from ASR"
36
+ ]
37
+ }
38
+ splits:
39
+ whisper_v1:
40
+ name: whisper_v1
41
+ description: ASR data from Whisper v1
42
+ whisper_v1_en:
43
+ name: whisper_v1_en
44
+ description: English-translated ASR data from Whisper v1
45
+ whisper_v2:
46
+ name: whisper_v2
47
+ description: ASR data from Whisper v2
48
+ whisper_v2_en:
49
+ name: whisper_v2_en
50
+ description: English-translated ASR data from Whisper v2
51
+ whisper_v3:
52
+ name: whisper_v3
53
+ description: ASR data from Whisper v3
54
+ ---
55
+
56
+ # Dataset Card for Whisper ASR Dataset
57
+
58
+ ## Dataset Description
59
+
60
+ The Whisper ASR Dataset is a collection of automatic speech recognition (ASR) data generated using Whisper models. The dataset contains multiple splits, each corresponding to different versions of the Whisper model and language translations. The splits are as follows:
61
+
62
+ - **whisper_v1**: Contains ASR data from Whisper v1.
63
+ - **whisper_v1_en**: English-translated datasets from Whisper v1.
64
+ - **whisper_v2**: Contains ASR data from Whisper v2.
65
+ - **whisper_v2_en**: English-translated datasets from Whisper v2.
66
+ - **whisper_v3**: Contains ASR data from Whisper v3.
67
+
68
+ ### Languages
69
+
70
+ The primary language of the dataset is English (`en`).
71
+
72
+ ### Licenses
73
+
74
+ The dataset is licensed under the Creative Commons Attribution 4.0 International License ([CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)).
75
+
76
+ ### Dataset Structure
77
+
78
+ Each JSON file in the dataset contains ASR segments with the following structure:
79
+
80
+ ```json
81
+ {
82
+ "segments": {
83
+ "segment index (int)": [
84
+ "start time in second (float)",
85
+ "end time in second (float)",
86
+ "transcribed text from ASR"
87
+ ]
88
+ }
89
+ }