audio_data_russian / README.md
kijjjj's picture
Update README.md
fb4371a verified
---
license: mit
task_categories:
- text-to-speech
language:
- ru
tags:
- audio
- russian
- speech
size_categories:
- 100K<n<1M
dataset_info:
config_name: default
features:
- name: text
dtype: string
- name: speaker_name
dtype: string
- name: audio
audio: {}
splits:
- name: train
num_examples: 995442
num_bytes: 115927546283
---
# Dataset Audio Russian
This is a dataset with Russian audio data, split into train for tasks like text-to-speech, speech recognition, and speaker identification.
## Features
- **text**: Audio transcription (string).
- **speaker_name**: Speaker identifier (string).
- **audio**: Audio file.
## Usage
Load the dataset like this:
```python
from datasets import load_dataset
dataset = load_dataset("kijjjj/audio_data_russian", split="train")
print(dataset[0])
```