File size: 2,449 Bytes
816fbed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
languages:
- en
licenses:
- cc-by-4.0
multilinguality:
- multilingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- automatic-speech-recognition
task_ids:
- speech-recognition
pretty_name: Whisper ASR Dataset
configs:
- name: whisper_v1
  description: Contains ASR from Whisper v1.
- name: whisper_v1_en
  description: English-translated datasets from Whisper v1.
- name: whisper_v2
  description: Contains ASR from Whisper v2.
- name: whisper_v2_en
  description: English-translated datasets from Whisper v2.
- name: whisper_v3
  description: Contains ASR from Whisper v3.
dataset_info:
  features:
  - name: segments
    feature: {
      "segment index (int)": [
        "start time in second (float)",
        "end time in second (float)",
        "transcribed text from ASR"
      ]
    }
  splits:
    whisper_v1:
      name: whisper_v1
      description: ASR data from Whisper v1
    whisper_v1_en:
      name: whisper_v1_en
      description: English-translated ASR data from Whisper v1
    whisper_v2:
      name: whisper_v2
      description: ASR data from Whisper v2
    whisper_v2_en:
      name: whisper_v2_en
      description: English-translated ASR data from Whisper v2
    whisper_v3:
      name: whisper_v3
      description: ASR data from Whisper v3
---

# Dataset Card for Whisper ASR Dataset

## Dataset Description

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:

- **whisper_v1**: Contains ASR data from Whisper v1.
- **whisper_v1_en**: English-translated datasets from Whisper v1.
- **whisper_v2**: Contains ASR data from Whisper v2.
- **whisper_v2_en**: English-translated datasets from Whisper v2.
- **whisper_v3**: Contains ASR data from Whisper v3.

### Languages

The primary language of the dataset is English (`en`).

### Licenses

The dataset is licensed under the Creative Commons Attribution 4.0 International License ([CC-BY-4.0](https://creativecommons.org/licenses/by/4.0/)).

### Dataset Structure

Each JSON file in the dataset contains ASR segments with the following structure:

```json
{
  "segments": {
    "segment index (int)": [
      "start time in second (float)",
      "end time in second (float)",
      "transcribed text from ASR"
    ]
  }
}