File size: 1,568 Bytes
eb51fc8
 
 
 
 
30bf1a3
eb51fc8
 
 
 
 
30bf1a3
eb51fc8
30bf1a3
 
eb51fc8
 
 
 
 
ccfe898
 
 
 
 
 
 
 
 
e964c4a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
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
- translation
language:
- ga
- en
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 version of the dataset with 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', 'translation'],
    num_rows: 1121
})
```

## How to load the dataset

```python
from datasets import load_dataset

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