Update README.md
Browse files
README.md
CHANGED
|
@@ -27,4 +27,36 @@ language:
|
|
| 27 |
- en
|
| 28 |
size_categories:
|
| 29 |
- 1K<n<10K
|
| 30 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
- en
|
| 28 |
size_categories:
|
| 29 |
- 1K<n<10K
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
# Dataset Details
|
| 33 |
+
|
| 34 |
+
Living Audio Irish speech corpus. This version is based on the Irish dataset on [Kaggle](https://www.kaggle.com/datasets/jimregan/living-audio-irish-speech-corpus).
|
| 35 |
+
The original version of the dataset with more languages is available on [GitHub](https://github.com/Idlak/Living-Audio-Dataset) as part of the Idlak project.
|
| 36 |
+
|
| 37 |
+
The details of the Irish portion of the Living Audio dataset are as follows:
|
| 38 |
+
|
| 39 |
+
| Speaker | Language | Accent | Gender | Total duration(mm:ss) | Sample rate (Hz) |
|
| 40 |
+
|:-------:|:--------:|:------:|:------:|:---------------------:|:----------------:|
|
| 41 |
+
| CLL | Irish (ga) | Non-native (ie) | Man | 61:56 | 48\,000 |
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
## Dataset Structure
|
| 45 |
+
|
| 46 |
+
```
|
| 47 |
+
Dataset({
|
| 48 |
+
features: ['sentence', 'audio', 'translation'],
|
| 49 |
+
num_rows: 1121
|
| 50 |
+
})
|
| 51 |
+
```
|
| 52 |
+
|
| 53 |
+
## How to load the dataset
|
| 54 |
+
|
| 55 |
+
```python
|
| 56 |
+
from datasets import load_dataset
|
| 57 |
+
|
| 58 |
+
living_audio_dataset = load_dataset("ymoslem/Living-Audio-Irish-GA-EN-MTed",
|
| 59 |
+
split="train",
|
| 60 |
+
trust_remote_code=True
|
| 61 |
+
)
|
| 62 |
+
```
|