File size: 1,525 Bytes
5defd92 fd0a8d9 5defd92 fd0a8d9 5defd92 fd0a8d9 5defd92 fd0a8d9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | ---
language:
- en
- ne
tags:
- tts
- audio
- speech-synthesis
- wiseai
license: mit
dtaset_info:
features:
- name: text
dtype: string
- name: audio
dtype: audio
- name: language
dtype: string
- name: category
dtype: string
configs:
- config_name: default
data_files:
- split: train
path: data/*
---
# WiseAI TTS Evaluation Dataset
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.
## Dataset Details
This is the reference dataset generated after running all tests and reports presented in the **TTS Evaluation report**.
### Source Data
The text inputs were sourced from the following test file in the WiseAI codebase:
[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)
### Data Fields
- **audio**: The generated audio file (`.wav` format, 24kHz).
- **text**: The input text used to generate the audio.
- **language**: The language tag of the input text (`english`, `nepali`, or `codemix`).
- *Note: `codemix` inputs were processed using the Nepali model.*
- **category**: The category of the intent/domain (e.g., banking, general).
## Usage
```python
from datasets import load_dataset
dataset = load_dataset("Firoj112/tts_test")
# Listen to a sample
print(dataset['train'][0]['text']) |