Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,75 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- automatic-speech-recognition
|
| 5 |
+
language:
|
| 6 |
+
- uz
|
| 7 |
+
---
|
| 8 |
+
# Speech-to-Text Evaluation Dataset
|
| 9 |
+
|
| 10 |
+
## Dataset Overview
|
| 11 |
+
|
| 12 |
+
This dataset is designed for evaluating Uzbek speech-to-text (STT) models on real-world conversational speech data. The audio samples were collected from various open Telegram groups, capturing natural voice messages in diverse acoustic conditions and speaking styles.
|
| 13 |
+
|
| 14 |
+
### Key Statistics
|
| 15 |
+
|
| 16 |
+
- **Total Samples**: 745 audio files
|
| 17 |
+
- **Total Duration**: 1 hour 40 minutes (~100 minutes)
|
| 18 |
+
- **Average Duration**: ~8 seconds per sample
|
| 19 |
+
- **Source**: Voice messages from various open Telegram groups
|
| 20 |
+
- **Transcriptions**: Manually annotated
|
| 21 |
+
|
| 22 |
+
## Dataset Structure
|
| 23 |
+
|
| 24 |
+
The dataset is saved as a `datasets.Dataset` object in Arrow format, containing the following fields:
|
| 25 |
+
|
| 26 |
+
- `name`: Name of audio file
|
| 27 |
+
- `audio`: Audio file data (dict with `array`, and `sampling_rate`)
|
| 28 |
+
- `transcription`: Ground truth text transcription (manually annotated)
|
| 29 |
+
|
| 30 |
+
## Loading the Dataset
|
| 31 |
+
|
| 32 |
+
### Installation
|
| 33 |
+
|
| 34 |
+
To use this dataset, you need to install the Hugging Face `datasets` library:
|
| 35 |
+
|
| 36 |
+
```bash
|
| 37 |
+
pip install datasets
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
### Basic Loading
|
| 41 |
+
|
| 42 |
+
```python
|
| 43 |
+
from datasets import load_dataset
|
| 44 |
+
|
| 45 |
+
# Load the dataset from the Arrow files
|
| 46 |
+
dataset = load_dataset("OvozifyLabs/asr_evaluate_set")
|
| 47 |
+
|
| 48 |
+
# View dataset information
|
| 49 |
+
print(dataset)
|
| 50 |
+
print(f"Number of samples: {len(dataset)}")
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
## Data Characteristics
|
| 54 |
+
|
| 55 |
+
### Audio Properties
|
| 56 |
+
|
| 57 |
+
- **Source Domain**: Conversational voice messages from Telegram
|
| 58 |
+
- **Variability**: Multiple speakers, diverse acoustic environments
|
| 59 |
+
- **Recording Conditions**: Real-world
|
| 60 |
+
- **Language**: Uzbek
|
| 61 |
+
|
| 62 |
+
### Transcription Details
|
| 63 |
+
|
| 64 |
+
- **Annotation Method**: Manual transcription
|
| 65 |
+
- **Quality**: Human-verified ground truth labels
|
| 66 |
+
- **Convention**: punctuation removed, lowercased
|
| 67 |
+
|
| 68 |
+
## Use Cases
|
| 69 |
+
|
| 70 |
+
This dataset is suitable for:
|
| 71 |
+
|
| 72 |
+
- Evaluating speech-to-text model performance on conversational speech
|
| 73 |
+
- Benchmarking ASR systems on real-world voice messages
|
| 74 |
+
- Testing model robustness to varied acoustic conditions
|
| 75 |
+
- Comparing different STT models
|