bond005 commited on
Commit
d9197ea
1 Parent(s): 23b7d41

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +115 -20
README.md CHANGED
@@ -1,23 +1,118 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: audio
5
- dtype: audio
6
- - name: transcription
7
- dtype: string
8
- splits:
9
- - name: test
10
- num_bytes: 683203255.518
11
- num_examples: 5799
12
- - name: train
13
- num_bytes: 9487140364.61
14
- num_examples: 81607
15
- - name: validation
16
- num_bytes: 662045510.11
17
- num_examples: 5835
18
- download_size: 10670575333
19
- dataset_size: 10832389130.238
 
20
  ---
21
- # Dataset Card for "sova_rudevices"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pretty_name: RuDevices
3
+ annotations_creators:
4
+ - expert-generated
5
+ language_creators:
6
+ - crowdsourced
7
+ language:
8
+ - ru
9
+ license:
10
+ - cc-by-4.0
11
+ multilinguality:
12
+ - monolingual
13
+ paperswithcode_id:
14
+ size_categories:
15
+ - 10K<n<100k
16
+ source_datasets:
17
+ - extended
18
+ task_categories:
19
+ - automatic-speech-recognition
20
+ - audio-classification
21
  ---
22
+ # Dataset Card for sova_rudevices
23
+ ## Table of Contents
24
+ - [Dataset Description](#dataset-description)
25
+ - [Dataset Summary](#dataset-summary)
26
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
27
+ - [Languages](#languages)
28
+ - [Dataset Structure](#dataset-structure)
29
+ - [Data Instances](#data-instances)
30
+ - [Data Fields](#data-fields)
31
+ - [Data Splits](#data-splits)
32
+ - [Dataset Creation](#dataset-creation)
33
+ - [Curation Rationale](#curation-rationale)
34
+ - [Source Data](#source-data)
35
+ - [Annotations](#annotations)
36
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
37
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
38
+ - [Social Impact of Dataset](#social-impact-of-dataset)
39
+ - [Discussion of Biases](#discussion-of-biases)
40
+ - [Other Known Limitations](#other-known-limitations)
41
+ - [Additional Information](#additional-information)
42
+ - [Dataset Curators](#dataset-curators)
43
+ - [Licensing Information](#licensing-information)
44
+ - [Citation Information](#citation-information)
45
+ - [Contributions](#contributions)
46
+ ## Dataset Description
47
+ - **Homepage:** [SOVA RuDevices](https://github.com/sovaai/sova-dataset)
48
+ - **Repository:** [SOVA Dataset](https://github.com/sovaai/sova-dataset)
49
+ - **Leaderboard:** [The 🤗 Speech Bench](https://huggingface.co/spaces/huggingface/hf-speech-bench)
50
+ - **Point of Contact:** [SOVA.ai](mailto:support@sova.ai)
51
+ ### Dataset Summary
52
+ SOVA Dataset is free public STT/ASR dataset. It consists of several parts, one of them is SOVA RuDevices. This part is an acoustic corpus of approximately 100 hours of 16kHz Russian live speech with manual annotating, prepared by [SOVA.ai team](https://github.com/sovaai).
53
 
54
+ Authors do not divide the dataset into train, validation and test subsets. Therefore, I was compelled to prepare this splitting. The training subset includes more than 82 hours, the validation subset includes approximately 6 hours, and the test subset includes approximately 6 hours too.
55
+
56
+ ### Supported Tasks and Leaderboards
57
+ - `automatic-speech-recognition`: The dataset can be used to train a model for Automatic Speech Recognition (ASR). The model is presented with an audio file and asked to transcribe the audio file to written text. The most common evaluation metric is the word error rate (WER). The task has an active Hugging Face leaderboard which can be found at https://huggingface.co/spaces/huggingface/hf-speech-bench. The leaderboard ranks models uploaded to the Hub based on their WER.
58
+ ### Languages
59
+ The audio is in Russian.
60
+ ## Dataset Structure
61
+ ### Data Instances
62
+ A typical data point comprises the audio data, usually called `audio` and its transcription, called `transcription`. Any additional information about the speaker and the passage which contains the transcription is not provided.
63
+ ```
64
+ {'audio': {'path': '/home/bond005/datasets/sova_rudevices/data/train/00003ec0-1257-42d1-b475-db1cd548092e.wav',
65
+ 'array': array([ 0.00787354, 0.00735474, 0.00714111, ...,
66
+ -0.00018311, -0.00015259, -0.00018311]), dtype=float32),
67
+ 'sampling_rate': 16000},
68
+ 'transcription': 'мне получше стало'}
69
+ ```
70
+ ### Data Fields
71
+ - audio: 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]`.
72
+ - transcription: the transcription of the audio file.
73
+ ### Data Splits
74
+ This dataset consists of three splits: training, validation, and test. This splitting was realized with accounting of internal structure of SOVA RuDevices (the validation split is based on the subdirectory `0`, and the test split is based on the subdirectory `1` of the original dataset), but audio recordings of the same speakers can be in different splits at the same time (the opposite is not guaranteed).
75
+ | | Train | Validation | Test |
76
+ | ----- | ------ | ---------- | ----- |
77
+ | examples | 81607 | 5835 | 5799 |
78
+ | hours | 82.4h | 5.9h | 5.8h |
79
+ ## Dataset Creation
80
+ ### Curation Rationale
81
+ [Needs More Information]
82
+ ### Source Data
83
+ #### Initial Data Collection and Normalization
84
+ [Needs More Information]
85
+ #### Who are the source language producers?
86
+ [Needs More Information]
87
+ ### Annotations
88
+ #### Annotation process
89
+ All recorded audio files were manually annotated.
90
+ #### Who are the annotators?
91
+ [Needs More Information]
92
+ ### Personal and Sensitive Information
93
+ The dataset consists of people who have donated their voice. You agree to not attempt to determine the identity of speakers in this dataset.
94
+ ## Considerations for Using the Data
95
+ ### Social Impact of Dataset
96
+ [More Information Needed]
97
+ ### Discussion of Biases
98
+ [More Information Needed]
99
+ ### Other Known Limitations
100
+ [Needs More Information]
101
+ ## Additional Information
102
+ ### Dataset Curators
103
+ The dataset was initially created by Egor Zubarev, Timofey Moskalets, and SOVA.ai team.
104
+ ### Licensing Information
105
+ [Creative Commons BY 4.0](https://creativecommons.org/licenses/by/4.0/)
106
+ ### Citation Information
107
+ ```
108
+ @misc{sova2021rudevices,
109
+ author = {Zubarev, Egor and Moskalets, Timofey and SOVA.ai},
110
+ title = {SOVA RuDevices Dataset: free public STT/ASR dataset with manually annotated live speech},
111
+ publisher = {GitHub},
112
+ journal = {GitHub repository},
113
+ year = {2021},
114
+ howpublished = {\url{https://github.com/sovaai/sova-dataset}},
115
+ }
116
+ ```
117
+ ### Contributions
118
+ Thanks to [@bond005](https://github.com/bond005) for adding this dataset.