File size: 1,951 Bytes
eb51fc8
 
 
 
 
30bf1a3
eb51fc8
 
 
 
 
30bf1a3
eb51fc8
30bf1a3
 
eb51fc8
 
 
 
 
ccfe898
 
 
549effb
ccfe898
 
 
 
e964c4a
 
 
 
 
a93a035
e964c4a
 
 
 
 
 
 
 
 
 
 
 
a93a035
e964c4a
 
 
 
 
 
 
 
 
007383b
e964c4a
 
 
 
a93a035
 
 
 
 
 
 
 
 
 
 
 
549effb
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
dataset_info:
  features:
  - name: sentence
    dtype: string
  - name: audio
    dtype:
      audio:
        sampling_rate: 48000
  splits:
  - name: train
    num_bytes: 330598119.934
    num_examples: 1121
  download_size: 351795253
  dataset_size: 330598119.934
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
license: apache-2.0
task_categories:
- automatic-speech-recognition
- text-to-speech
language:
- ga
size_categories:
- 1K<n<10K
---

# Dataset Details

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).
The original dataset with audio in more languages is available on [GitHub](https://github.com/Idlak/Living-Audio-Dataset) as part of the Idlak project.

The details of the Irish portion of the Living Audio dataset are as follows:

| Speaker | Language | Accent | Gender | Total duration(mm:ss) | Sample rate (Hz) |
|:-------:|:--------:|:------:|:------:|:---------------------:|:----------------:|
| CLL | Irish (ga)   | Non-native (ie)  | Man   | 61:56 | 48\,000 |


## Dataset Structure

```
Dataset({
    features: ['sentence', 'audio'],
    num_rows: 1121
})
```

## How to load the dataset

```python
from datasets import load_dataset

living_audio_dataset = load_dataset("ymoslem/Living-Audio-Irish",
                                    split="train",
                                    trust_remote_code=True
                                    )
```

## Citation

```
@inproceedings{braude19_interspeech,
  author={David A. Braude and Matthew P. Aylett and Caoimhín Laoide-Kemp and Simone Ashby and Kristen M. Scott and Brian Ó Raghallaigh and Anna Braudo and Alex Brouwer and Adriana Stan},
  title={{All Together Now: The Living Audio Dataset}},
  year=2019,
  booktitle={Proc. Interspeech 2019},
  pages={1521--1525},
  doi={10.21437/Interspeech.2019-2448}
}
```