Beehzod commited on
Commit
ce07f07
1 Parent(s): 2096d0b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -19
README.md CHANGED
@@ -30,31 +30,73 @@ configs:
30
  path: "audio/uz_validated_dataset/"
31
  - split: wavs
32
  path: "audio/wavs/"
33
-
34
  ---
35
- # Uzbek Language Speech-to-Text Dataset
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
- This dataset is designed for Automatic Speech Recognition (ASR) tasks in the Uzbek language. It includes audio files and their corresponding transcriptions.
 
 
 
 
 
 
 
38
 
39
- ## Dataset Structure
 
 
 
40
 
41
- - **audio/**
42
- - **uz_other_dataset/**: Contains `.tar` files like `uz_other_0.tar`, `uz_other_1.tar`, etc.
43
- - **uz_train_dataset/**: Contains `.tar` files like `uz_train_0.tar`, `uz_train_1.tar`, etc.
44
- - **uz_validated_dataset/**: Contains `.tar` files like `uz_validated_0.tar`, `uz_validated_1.tar`, `uz_validated_2.tar`.
45
- - **wavs/**: Contains individual `.wav` files.
46
 
47
- - **transcription/**
48
- - **train.tsv**: Contains training data with file paths and transcriptions.
49
- - **validated.tsv**: Contains validation data with file paths and transcriptions.
50
- - **other.tsv**: Contains additional data with file paths and transcriptions.
51
- - **wavs.tsv**: Contains paths to `.wav` files with their transcriptions.
52
 
53
- ## Usage
 
54
 
55
- To load this dataset, use the `datasets` library from Hugging Face:
 
 
 
 
 
 
 
56
 
57
- ```python
58
- from datasets import load_dataset
59
 
60
- dataset = load_dataset("Beehzod/STT_uz")
 
30
  path: "audio/uz_validated_dataset/"
31
  - split: wavs
32
  path: "audio/wavs/"
 
33
  ---
34
+ Uzbek Speech-to-Text Dataset (STT_uz)
35
+ Dataset Description
36
+ The Uzbek Speech-to-Text (STT_uz) dataset is designed to facilitate the development and evaluation of speech-to-text models for the Uzbek language. This dataset includes a variety of audio recordings paired with their transcriptions, collected from different sources to ensure diverse coverage of spoken Uzbek.
37
+
38
+ Dataset Summary
39
+ Languages: Uzbek
40
+ Size: Varied across different subsets.
41
+ Total Audio Duration: Varied
42
+ File Formats: .wav and mp3 for audio files, .tsv for transcriptions.
43
+ Dataset Structure
44
+ The dataset is organized into the following directories and files:
45
+
46
+ audio/
47
+
48
+ uz_other_dataset/: Contains .tar archives like uz_other_0.taruz_other_1.tar
49
+ uz_train_dataset/: Contains .tar archives like uz_train_0.tar.
50
+ uz_validated_dataset/: Contains .tar archives like uz_validated_0.tar, uz_validated_1.tar, and uz_validated_2.tar.
51
+ wavs/: Contains individual .wav files.
52
+ transcription/: Contains .tsv files including:
53
+
54
+ other.tsv
55
+ train.tsv
56
+ validated.tsv
57
+ wavs.tsv
58
+ The .tsv files have two columns: file_name and transcription. Each entry provides the path to the audio file and its corresponding transcription.
59
+
60
+ Data Instances
61
+ A typical data point includes:
62
+
63
+ Audio File: Path to the .wav and mp3 files.
64
+ Transcription: Text transcribed from the audio.
65
+ Example data instance:
66
 
67
+ json
68
+ Copy code
69
+ {
70
+ "file_name": "audio/uz_train_dataset/common_voice_uz_28907218.mp3",
71
+ "transcription": "Bugun ertalab Gyotenikiga taklifnoma oldim."
72
+ }
73
+ Data Splits
74
+ The dataset is divided into the following subsets:
75
 
76
+ Train: Used for training models.
77
+ Validated: Used for validation and model tuning.
78
+ Other: Additional data that has not yet been reviewed.
79
+ The data was collected from various sources to ensure a diverse representation of spoken Uzbek.
80
 
81
+ Annotations
82
+ Annotations were performed manually, ensuring high accuracy of transcriptions.
 
 
 
83
 
84
+ Considerations for Using the Data
85
+ Personal and Sensitive Information: The dataset contains voice recordings from contributors who have voluntarily shared their data. Do not attempt to identify any individual contributors.
86
+ Social Impact: This dataset is intended to improve speech recognition technology for the Uzbek language, with potential applications in various domains.
87
+ Licensing Information
88
+ This dataset is licensed under the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication.
89
 
90
+ Citation Information
91
+ If you use this dataset in your research or projects, please cite it as follows:
92
 
93
+ bibtex
94
+ Copy code
95
+ @misc{uzbek_stt_dataset,
96
+ author = {Beehzod},
97
+ title = {Uzbek Speech-to-Text Dataset (STT_uz)},
98
+ year = {2024},
99
+ url = {https://huggingface.co/datasets/Beehzod/STT_uz}
100
+ }
101
 
 
 
102