sh1vam10 commited on
Commit
2045feb
·
verified ·
1 Parent(s): 068c353

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README 2.md +71 -0
  2. metadata.jsonl +0 -0
README 2.md ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ task_categories:
5
+ - audio-classification
6
+ tags:
7
+ - wake-word
8
+ - keyword-spotting
9
+ - voice-assistant
10
+ pretty_name: SAM Wake Word Dataset
11
+ size_categories:
12
+ - 1K<n<10K
13
+ license: mit
14
+ ---
15
+
16
+ # SAM Wake Word Dataset
17
+
18
+ Audio dataset for training a wake-word detection model to recognise the keyword **"Sam"**.
19
+
20
+ ## Dataset Description
21
+
22
+ Each sample is a short audio clip labelled as either **positive** (contains the wake word) or **negative** (does not).
23
+
24
+ | Split | Description |
25
+ |-------|-------------|
26
+ | `positive/` | Clips of the word "Sam" spoken in varied styles, speeds, and intonations |
27
+ | `negative/` | Clips of phonetically similar or common words that are **not** "Sam" |
28
+
29
+ ## Generation
30
+
31
+ All audio is synthesised using **OpenAI `gpt-4o-mini-tts`** with:
32
+
33
+ - **10 voices**: alloy, ash, ballad, coral, echo, fable, nova, onyx, sage, shimmer
34
+ - **Variable speed**: 0.85× – 1.30×
35
+ - **Diverse speaking styles**: whispering, shouting, questioning, commanding, accented, etc.
36
+
37
+ Positive prompts include: *"Sam", "sam", "SAM", "Sam!", "Hey Sam", "Yo Sam"*
38
+
39
+ Negative prompts include phonetically close words (*ham, jam, slam, spam, dam, same, samuel, sample*) and common short words (*hello, hey, stop, play, yes, no, …*).
40
+
41
+ ### Audio Format
42
+
43
+ - **Sample rate**: 16 kHz
44
+ - **Channels**: mono
45
+ - **Format**: WAV
46
+
47
+ ## Manifest
48
+
49
+ A `manifest.json` file is included with metadata for each clip:
50
+
51
+ ```json
52
+ {
53
+ "file": "positive/positive_00042.wav",
54
+ "label": "positive",
55
+ "text": "Sam",
56
+ "voice": "nova",
57
+ "speed": 1.12
58
+ }
59
+ ```
60
+
61
+ ## Usage
62
+
63
+ ```python
64
+ from datasets import load_dataset
65
+
66
+ ds = load_dataset("SAM-Companion/sam-wake-word")
67
+ ```
68
+
69
+ ## License
70
+
71
+ MIT
metadata.jsonl ADDED
The diff for this file is too large to render. See raw diff