Upload 2 files
Browse files- dataset_info.json +32 -0
- readme.md +48 -0
dataset_info.json
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"description": "This dataset is designed for speech-to-text tasks and contains audio files stored in tar archives along with corresponding transcript files in TSV format. The data is organized for the Uzbek language and split into train, test, and validation sets.",
|
3 |
+
"homepage": "https://huggingface.co/datasets/Elyordev/Dataset_STT",
|
4 |
+
"license": "MIT",
|
5 |
+
"splits": {
|
6 |
+
"train": {
|
7 |
+
"name": "train",
|
8 |
+
"num_bytes": 0,
|
9 |
+
"num_examples": 0
|
10 |
+
},
|
11 |
+
"test": {
|
12 |
+
"name": "test",
|
13 |
+
"num_bytes": 0,
|
14 |
+
"num_examples": 0
|
15 |
+
},
|
16 |
+
"validation": {
|
17 |
+
"name": "validation",
|
18 |
+
"num_bytes": 0,
|
19 |
+
"num_examples": 0
|
20 |
+
}
|
21 |
+
},
|
22 |
+
"features": {
|
23 |
+
"audio": {
|
24 |
+
"dtype": "string",
|
25 |
+
"description": "Audio files are stored as tar archives containing the actual audio data."
|
26 |
+
},
|
27 |
+
"transcript": {
|
28 |
+
"dtype": "string",
|
29 |
+
"description": "Transcript files in TSV format containing the corresponding transcriptions for the audio data."
|
30 |
+
}
|
31 |
+
}
|
32 |
+
}
|
readme.md
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Dataset_STT
|
2 |
+
|
3 |
+
This dataset is designed for speech-to-text (STT) tasks and contains audio files along with their corresponding transcripts for the Uzbek language. The dataset is organized into two main directories: one for the audio files and another for the transcript files. Each of these directories is further divided by language (`uz`) and by the data split: `train`, `test`, and `validation`.
|
4 |
+
|
5 |
+
## Dataset Structure
|
6 |
+
|
7 |
+
Dataset_STT/
|
8 |
+
βββ audio/
|
9 |
+
β βββ uz/
|
10 |
+
β β βββ test/
|
11 |
+
β β β βββ test.tar
|
12 |
+
β β βββ train/
|
13 |
+
β β β βββ train.tar
|
14 |
+
β β βββ validation/
|
15 |
+
β β βββ validation.tar
|
16 |
+
βββ transcript/
|
17 |
+
β βββ uz/
|
18 |
+
β β βββ test/
|
19 |
+
β β β βββ test.tsv
|
20 |
+
β β βββ train/
|
21 |
+
β β β βββ train.tsv
|
22 |
+
β β βββ validation/
|
23 |
+
β β βββ validation.tsv
|
24 |
+
|
25 |
+
## Files Description
|
26 |
+
|
27 |
+
- **Audio Files (`*.tar`):**
|
28 |
+
The audio files are provided as tar archives containing the actual audio data.
|
29 |
+
- `audio/uz/train/train.tar`: Training audio files.
|
30 |
+
- `audio/uz/test/test.tar`: Testing audio files.
|
31 |
+
- `audio/uz/validation/validation.tar`: Validation audio files.
|
32 |
+
|
33 |
+
- **Transcript Files (`*.tsv`):**
|
34 |
+
The transcript files are in TSV (Tab-Separated Values) format and contain the text transcriptions corresponding to the audio data.
|
35 |
+
- `transcript/uz/train/train.tsv`: Training transcripts.
|
36 |
+
- `transcript/uz/test/test.tsv`: Testing transcripts.
|
37 |
+
- `transcript/uz/validation/validation.tsv`: Validation transcripts.
|
38 |
+
|
39 |
+
## How to Load the Dataset
|
40 |
+
|
41 |
+
You can load this dataset using the Hugging Face [datasets](https://huggingface.co/docs/datasets/) library. For example:
|
42 |
+
|
43 |
+
```python
|
44 |
+
from datasets import load_dataset
|
45 |
+
|
46 |
+
# Load the dataset from the Hub
|
47 |
+
dataset = load_dataset("Elyordev/Dataset_STT")
|
48 |
+
print(dataset)
|