eoinedge commited on
Commit
3880c80
·
verified ·
1 Parent(s): 69f7c50

Add NN architecture + live browser demo (wasm-demo-tester) to card

Browse files
Files changed (1) hide show
  1. README.md +13 -2
README.md CHANGED
@@ -21,9 +21,10 @@ datasets:
21
 
22
  Hey-Edge is an audio keyword-spotting wake-word model trained with Edge Impulse to detect the phrase "hey edge" from 16 kHz microphone audio.
23
 
24
- The model was trained using synthetic and augmented audio and exported as an Edge Impulse C++ library for embedded and TinyML deployment.
25
 
26
- Live Edge Impulse project: https://studio.edgeimpulse.com/public/1052106/live
 
27
 
28
  ## Model details
29
 
@@ -62,6 +63,16 @@ This model is not intended for speaker identification, speech recognition, trans
62
  | Data type | Synthetic and augmented audio |
63
  | Audio sample rate | 16 kHz |
64
 
 
 
 
 
 
 
 
 
 
 
65
  ## Validation performance
66
 
67
  | Metric | Value |
 
21
 
22
  Hey-Edge is an audio keyword-spotting wake-word model trained with Edge Impulse to detect the phrase "hey edge" from 16 kHz microphone audio.
23
 
24
+ The model was trained using synthetic and augmented audio and exported as an Edge Impulse C++ library for embedded and TinyML deployment. A WebAssembly (browser) export of the same model also runs live in the [wasm-demo-tester Space](https://huggingface.co/spaces/edgeimpulse/wasm-demo-tester).
25
 
26
+ - Live Edge Impulse project: https://studio.edgeimpulse.com/public/1052106/live
27
+ - Try it in the browser (mic): https://huggingface.co/spaces/edgeimpulse/wasm-demo-tester
28
 
29
  ## Model details
30
 
 
63
  | Data type | Synthetic and augmented audio |
64
  | Audio sample rate | 16 kHz |
65
 
66
+ ## Neural network architecture
67
+
68
+ Transfer-learning keyword-spotting head (`keras-transfer-kws`) on MFE audio features.
69
+
70
+ | Layer | Detail |
71
+ |---|---|
72
+ | Input layer | 3,960 features |
73
+ | Backbone | MobileNetV2 0.35 (no final dense layer, 0.1 dropout) |
74
+ | Output layer | 3 classes (`background_noise`, `hey_edge`, `unknown`) |
75
+
76
  ## Validation performance
77
 
78
  | Metric | Value |