Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -24,7 +24,8 @@ configs:
|
|
24 |
|
25 |
# Dataset Card for Dataset Name
|
26 |
|
27 |
-
This is the Irish portion of the Spoken Words dataset
|
|
|
28 |
The Irish sentences are automatically translated into English using Google Translation API.
|
29 |
|
30 |
## Dataset Structure
|
@@ -36,6 +37,18 @@ Dataset({
|
|
36 |
})
|
37 |
```
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
## Citation
|
40 |
|
41 |
```
|
|
|
24 |
|
25 |
# Dataset Card for Dataset Name
|
26 |
|
27 |
+
This is the Irish portion of the Spoken Words dataset (available at [MLCommons/ml_spoken_words](https://huggingface.co/datasets/MLCommons/ml_spoken_words)),
|
28 |
+
with merged splits “train”, “validation”, and “test”, augmented with machine translation.
|
29 |
The Irish sentences are automatically translated into English using Google Translation API.
|
30 |
|
31 |
## Dataset Structure
|
|
|
37 |
})
|
38 |
```
|
39 |
|
40 |
+
# How to load the dataset
|
41 |
+
|
42 |
+
```
|
43 |
+
from datasets import load_dataset
|
44 |
+
|
45 |
+
dataset = load_dataset("SpokenWords-GA-EN-MTed",
|
46 |
+
split="train",
|
47 |
+
trust_remote_code=True
|
48 |
+
)
|
49 |
+
|
50 |
+
```
|
51 |
+
|
52 |
## Citation
|
53 |
|
54 |
```
|