Datasets:
Tasks:
Automatic Speech Recognition
Formats:
parquet
Sub-tasks:
keyword-spotting
Size:
10K - 100K
ArXiv:
Tags:
speech-recognition
License:
Commit
·
77593cd
1
Parent(s):
69ca448
Update README.md
Browse files
README.md
CHANGED
|
@@ -42,7 +42,7 @@ task_ids:
|
|
| 42 |
|
| 43 |
- **Fine-Tuning script:** [research-projects/xtreme-s](https://github.com/huggingface/transformers/tree/main/examples/pytorch/audio-classification)
|
| 44 |
- **Paper:** [Multilingual and Cross-Lingual Intent Detection from Spoken Data](https://arxiv.org/abs/2104.08524)
|
| 45 |
-
- **Total amount of disk used:** ca.
|
| 46 |
|
| 47 |
MINDS-14 is training and evaluation resource for intent detection task with spoken data. It covers 14
|
| 48 |
intents extracted from a commercial system in the e-banking domain, associated with spoken examples in 14 diverse language varieties.
|
|
@@ -71,8 +71,21 @@ intent = minds_14["train"].features["intent_class"].names[intent_class]
|
|
| 71 |
|
| 72 |
## Dataset Structure
|
| 73 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 74 |
An example of a datainstance of the config `fr-FR` looks as follows:
|
| 75 |
|
|
|
|
| 76 |
{
|
| 77 |
"path": "/home/patrick/.cache/huggingface/datasets/downloads/extracted/3ebe2265b2f102203be5e64fa8e533e0c6742e72268772c8ac1834c5a1a921e3/fr-FR~ADDRESS/response_4.wav",
|
| 78 |
"audio": {
|
|
@@ -87,6 +100,20 @@ An example of a datainstance of the config `fr-FR` looks as follows:
|
|
| 87 |
"intent_class": 1,
|
| 88 |
"lang_id": 6,
|
| 89 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
|
| 91 |
## Dataset Creation
|
| 92 |
|
|
|
|
| 42 |
|
| 43 |
- **Fine-Tuning script:** [research-projects/xtreme-s](https://github.com/huggingface/transformers/tree/main/examples/pytorch/audio-classification)
|
| 44 |
- **Paper:** [Multilingual and Cross-Lingual Intent Detection from Spoken Data](https://arxiv.org/abs/2104.08524)
|
| 45 |
+
- **Total amount of disk used:** ca. 500 MB
|
| 46 |
|
| 47 |
MINDS-14 is training and evaluation resource for intent detection task with spoken data. It covers 14
|
| 48 |
intents extracted from a commercial system in the e-banking domain, associated with spoken examples in 14 diverse language varieties.
|
|
|
|
| 71 |
|
| 72 |
## Dataset Structure
|
| 73 |
|
| 74 |
+
We show detailed information the example configurations `fr-FR` of the dataset.
|
| 75 |
+
All other configurations have the same structure.
|
| 76 |
+
|
| 77 |
+
### Data Instances
|
| 78 |
+
|
| 79 |
+
**fr-FR**
|
| 80 |
+
|
| 81 |
+
- Size of downloaded dataset files: 471 MB
|
| 82 |
+
- Size of the generated dataset: 300 KB
|
| 83 |
+
- Total amount of disk used: 471 MB
|
| 84 |
+
|
| 85 |
+
|
| 86 |
An example of a datainstance of the config `fr-FR` looks as follows:
|
| 87 |
|
| 88 |
+
```
|
| 89 |
{
|
| 90 |
"path": "/home/patrick/.cache/huggingface/datasets/downloads/extracted/3ebe2265b2f102203be5e64fa8e533e0c6742e72268772c8ac1834c5a1a921e3/fr-FR~ADDRESS/response_4.wav",
|
| 91 |
"audio": {
|
|
|
|
| 100 |
"intent_class": 1,
|
| 101 |
"lang_id": 6,
|
| 102 |
}
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
### Data Fields
|
| 106 |
+
The data fields are the same among all splits.
|
| 107 |
+
|
| 108 |
+
- **path** (str): Path to the audio file
|
| 109 |
+
- **audio** (dict): Audio object including loaded audio array, sampling rate and path ot audio
|
| 110 |
+
- **transcription** (str): Transcription of the audio file
|
| 111 |
+
- **english_transcription** (str): English transcription of the audio file
|
| 112 |
+
- **intent_class** (int): Class id of intent
|
| 113 |
+
- **lang_id** (int): Id of language
|
| 114 |
+
|
| 115 |
+
### Data Splits
|
| 116 |
+
Every config only has the `"train"` split containing of *ca.* 600 examples.
|
| 117 |
|
| 118 |
## Dataset Creation
|
| 119 |
|