File size: 2,507 Bytes
e63ff34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ef79daf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e63ff34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ef79daf
 
 
e63ff34
 
ef79daf
 
 
 
 
 
 
 
 
e63ff34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ef79daf
 
e63ff34
 
 
 
 
 
 
 
 
 
 
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
---
license: cc-by-4.0
pretty_name: hey_edge wake word synthetic speech dataset
task_categories:
- audio-classification
tags:
- audio
- speech
- wake-word
- keyword-spotting
- text-to-speech
- synthetic-data
- edge-impulse
- tinyml
size_categories:
- n<1K
dataset_info:
  features:
  - name: audio
    dtype: audio
  - name: label
    dtype:
      class_label:
        names:
          '0': background_noise
          '1': hey_edge
          '2': unknown
  splits:
  - name: train
    num_examples: 1312
  - name: test
    num_examples: 337
configs:
- config_name: default
  data_files:
  - split: train
    path: audio/train/**/*.wav
  - split: test
    path: audio/test/**/*.wav
---

# hey_edge — Wake Word Synthetic Speech Dataset

Synthetic, augmented audio for training a small wake-word / keyword-spotting
model. Generated with **piper_tts** and local audio augmentation.

## Classes

| Label | Samples |
|---|---|
| `background_noise` | 200 |
| `hey_edge` | 378 |
| `unknown` | 1071 |

- `hey_edge` — the target wake phrase and close variants.
- `unknown` — near-miss and unrelated short phrases.
- `background_noise` — synthetic background noise.

## Audio Specification

| Property | Value |
|---|---|
| Format | WAV |
| Channels | Mono |
| Sample rate | 16000 Hz |
| Clip length | 2.0 seconds |

## Layout

Audio is organised into one sub-folder per class so the Hugging Face dataset
viewer infers the `label` column automatically:

```text
audio/
  train/
    hey_edge/     hey_edge.<id>.wav ...
    unknown/  unknown.<id>.wav ...
    background_noise/    background_noise.<id>.wav ...
  test/
    hey_edge/ ...
    unknown/ ...
    background_noise/ ...
edge_impulse_metadata.csv
hf_metadata.csv
selected_voices.csv
dataset_summary.json
```

## Loading

```python
from datasets import load_dataset, Audio

ds = load_dataset("edgeimpulse/Hey-Edge")
ds = ds.cast_column("audio", Audio(sampling_rate=16000))
print(ds)
```

## Edge Impulse

Filenames follow the Edge Impulse label-prefix convention
(`hey_edge.<id>.wav`) so they upload directly:

```bash
edge-impulse-uploader --category training audio/train/**/*.wav
edge-impulse-uploader --category testing audio/test/**/*.wav
```

## Limitations

Synthetic TTS is a bootstrap, not a production benchmark. Add real device
and environment recordings before deploying a wake-word product.

## License

CC BY 4.0. Verify that your use of the generated synthetic speech complies
with the terms of the voice models and tools used to create it.