imvladikon commited on
Commit
7be24a5
·
1 Parent(s): 475624e

Delete README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -157
README.md DELETED
@@ -1,157 +0,0 @@
1
- ---
2
- pretty_name: Common Voice Corpus 8.0
3
- annotations_creators:
4
- - crowdsourced
5
- language_creators:
6
- - crowdsourced
7
- languages:
8
- - he
9
- licenses:
10
- - other
11
- size_categories:
12
- he:
13
- - 1K<n<10K
14
- source_datasets:
15
- - coursera
16
- task_categories:
17
- - speech-processing
18
- task_ids:
19
- - automatic-speech-recognition
20
- extra_gated_prompt: "By clicking on “Access repository” below, you also agree to not attempt to determine the identity of speakers in the dataset."
21
- ---
22
-
23
- # Dataset Card for Common Voice Corpus 8.0
24
-
25
- ## Table of Contents
26
- - [Dataset Description](#dataset-description)
27
- - [Dataset Summary](#dataset-summary)
28
- - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
29
- - [Languages](#languages)
30
- - [Dataset Structure](#dataset-structure)
31
- - [Data Instances](#data-instances)
32
- - [Data Fields](#data-fields)
33
- - [Data Splits](#data-splits)
34
- - [Dataset Creation](#dataset-creation)
35
- - [Curation Rationale](#curation-rationale)
36
- - [Source Data](#source-data)
37
- - [Annotations](#annotations)
38
- - [Personal and Sensitive Information](#personal-and-sensitive-information)
39
- - [Considerations for Using the Data](#considerations-for-using-the-data)
40
- - [Social Impact of Dataset](#social-impact-of-dataset)
41
- - [Discussion of Biases](#discussion-of-biases)
42
- - [Other Known Limitations](#other-known-limitations)
43
- - [Additional Information](#additional-information)
44
- - [Dataset Curators](#dataset-curators)
45
- - [Licensing Information](#licensing-information)
46
- - [Citation Information](#citation-information)
47
- - [Contributions](#contributions)
48
-
49
- ## Dataset Description
50
-
51
- - **Homepage:**
52
- - **Repository:**
53
- - **Paper:**
54
- - **Leaderboard:**
55
- - **Point of Contact:**
56
-
57
- ### Dataset Summary
58
-
59
-
60
- ### Supported Tasks and Leaderboards
61
-
62
-
63
- ### Languages
64
-
65
- ```
66
- Hebrew
67
- ```
68
-
69
- ## Dataset Structure
70
-
71
- ### Data Instances
72
-
73
- A typical data point comprises the `path` to the audio file and its `sentence`.
74
-
75
- ```python
76
- {
77
- 'path': '*.wav',
78
- 'audio': {
79
- 'path': '*.wav',
80
- 'array': array([-0.00048828, -0.00018311, -0.00137329, ..., 0.00079346, 0.00091553, 0.00085449], dtype=float32),
81
- 'sampling_rate': 16000
82
- },
83
- 'sentence': '',
84
- }
85
- ```
86
-
87
- ### Data Fields
88
-
89
- `path` (`string`): The path to the audio file
90
-
91
- `audio` (`dict`): A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate. Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the `"audio"` column, *i.e.* `dataset[0]["audio"]` should **always** be preferred over `dataset["audio"][0]`.
92
-
93
- `sentence` (`string`): The sentence the user was prompted to speak
94
-
95
- ### Data Splits
96
-
97
- The speech material has been subdivided into portions for dev, train
98
-
99
- ## Dataset Creation
100
-
101
- ### Curation Rationale
102
-
103
- [Needs More Information]
104
-
105
- ### Source Data
106
-
107
- #### Initial Data Collection and Normalization
108
-
109
- [Needs More Information]
110
-
111
- #### Who are the source language producers?
112
-
113
- [Needs More Information]
114
-
115
- ### Annotations
116
-
117
- #### Annotation process
118
-
119
- [Needs More Information]
120
-
121
- #### Who are the annotators?
122
-
123
- [Needs More Information]
124
-
125
- ### Personal and Sensitive Information
126
-
127
- [More Information Needed]
128
-
129
- ## Considerations for Using the Data
130
-
131
- ### Social Impact of Dataset
132
-
133
- [More Information Needed]
134
-
135
- ### Discussion of Biases
136
-
137
- [More Information Needed]
138
-
139
- ### Other Known Limitations
140
-
141
- [More Information Needed]
142
-
143
- ## Additional Information
144
-
145
- ### Dataset Curators
146
-
147
- [More Information Needed]
148
-
149
- ### Licensing Information
150
-
151
- [More Information Needed]
152
-
153
- ### Citation Information
154
-
155
- ```
156
-
157
- ```