File size: 1,582 Bytes
679396f
 
 
de70c75
 
679396f
 
 
de70c75
679396f
 
 
 
de70c75
 
 
 
679396f
 
 
 
 
 
9d4da0e
 
 
4616a73
 
9d4da0e
 
 
 
 
 
 
 
 
 
 
4616a73
 
 
 
 
 
 
 
 
 
 
 
9d4da0e
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: keyword
    dtype: string
  - name: audio
    dtype:
      audio:
        sampling_rate: 16000
  - name: translation
    dtype: string
  splits:
  - name: train
    num_bytes: 350177561.125
    num_examples: 10925
  download_size: 133270458
  dataset_size: 350177561.125
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# Dataset Card for Dataset Name

This is the Irish portion of the Spoken Words dataset (available at [MLCommons/ml_spoken_words](https://huggingface.co/datasets/MLCommons/ml_spoken_words)),
with merged splits “train”, “validation”, and “test”, augmented with machine translation.
The Irish sentences are automatically translated into English using Google Translation API.

## Dataset Structure

```
Dataset({
    features: ['keyword', 'audio', 'translation'],
    num_rows: 10925
})
```

# How to load the dataset

```
from datasets import load_dataset

dataset = load_dataset("SpokenWords-GA-EN-MTed",
                       split="train",
                       trust_remote_code=True
                      )

```

## Citation

```
@inproceedings{mazumder2021multilingual,
  title={Multilingual Spoken Words Corpus},
  author={Mazumder, Mark and Chitlangia, Sharad and Banbury, Colby and Kang, Yiping and Ciro, Juan Manuel and Achorn, Keith and Galvez, Daniel and Sabini, Mark and Mattson, Peter and Kanter, David and others},
  booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 2)},
  year={2021}
}
```