Update README.md
Browse files
README.md
CHANGED
|
@@ -1,25 +1,45 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
features:
|
| 4 |
- name: text
|
| 5 |
dtype: string
|
| 6 |
- name: audio
|
| 7 |
-
dtype:
|
| 8 |
-
audio:
|
| 9 |
-
sampling_rate: 24000
|
| 10 |
- name: language
|
| 11 |
dtype: string
|
| 12 |
- name: category
|
| 13 |
dtype: string
|
| 14 |
-
splits:
|
| 15 |
-
- name: train
|
| 16 |
-
num_bytes: 274573374.0
|
| 17 |
-
num_examples: 335
|
| 18 |
-
download_size: 269818435
|
| 19 |
-
dataset_size: 274573374.0
|
| 20 |
configs:
|
| 21 |
- config_name: default
|
| 22 |
data_files:
|
| 23 |
- split: train
|
| 24 |
-
path: data/
|
| 25 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
- ne
|
| 5 |
+
tags:
|
| 6 |
+
- tts
|
| 7 |
+
- audio
|
| 8 |
+
- speech-synthesis
|
| 9 |
+
- wiseai
|
| 10 |
+
license: mit
|
| 11 |
+
dtaset_info:
|
| 12 |
features:
|
| 13 |
- name: text
|
| 14 |
dtype: string
|
| 15 |
- name: audio
|
| 16 |
+
dtype: audio
|
|
|
|
|
|
|
| 17 |
- name: language
|
| 18 |
dtype: string
|
| 19 |
- name: category
|
| 20 |
dtype: string
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
configs:
|
| 22 |
- config_name: default
|
| 23 |
data_files:
|
| 24 |
- split: train
|
| 25 |
+
path: data/*
|
| 26 |
---
|
| 27 |
+
# WiseAI TTS Evaluation Dataset
|
| 28 |
+
This dataset contains generated audio samples from the WiseAI TTS system. It is designed for evaluating the performance and quality of the Text-to-Speech engine across English, Nepali, and Code-mixed (Nepali-English) inputs.
|
| 29 |
+
## Dataset Details
|
| 30 |
+
This is the reference dataset generated after running all tests and reports presented in the **TTS Evaluation report**.
|
| 31 |
+
### Source Data
|
| 32 |
+
The text inputs were sourced from the following test file in the WiseAI codebase:
|
| 33 |
+
[test/test_dataset/jsonl_format/asr_test_data.jsonl](cci:7://file:///c:/Users/firoj/OneDrive/Desktop/WiseYak/wiseai-tts/test/test_dataset/jsonl_format/asr_test_data.jsonl:0:0-0:0)
|
| 34 |
+
### Data Fields
|
| 35 |
+
- **audio**: The generated audio file (`.wav` format, 24kHz).
|
| 36 |
+
- **text**: The input text used to generate the audio.
|
| 37 |
+
- **language**: The language tag of the input text (`english`, `nepali`, or `codemix`).
|
| 38 |
+
- *Note: `codemix` inputs were processed using the Nepali model.*
|
| 39 |
+
- **category**: The category of the intent/domain (e.g., banking, general).
|
| 40 |
+
## Usage
|
| 41 |
+
```python
|
| 42 |
+
from datasets import load_dataset
|
| 43 |
+
dataset = load_dataset("Firoj112/tts_test")
|
| 44 |
+
# Listen to a sample
|
| 45 |
+
print(dataset['train'][0]['text'])
|