eoinedge commited on
Commit
643d070
·
verified ·
1 Parent(s): 4db0b8c

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +13 -0
  2. config.json +24 -0
  3. labels.txt +3 -0
README.md ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - edge-impulse
5
+ - keyword-spotting
6
+ - tflite
7
+ - wake-word
8
+ datasets:
9
+ - eoinedge/hey-android
10
+ pipeline_tag: audio-classification
11
+ ---
12
+ # Hey Android Keyword Spotting Model
13
+ Trained via Edge Impulse using synthetic and augmented audio.
config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "hey-android-kws",
3
+ "task": "keyword-spotting",
4
+ "framework": "tensorflow-lite",
5
+ "labels": [
6
+ "background_noise",
7
+ "hey_android",
8
+ "unknown"
9
+ ],
10
+ "target_label": "hey_android",
11
+ "sample_rate": 16000,
12
+ "clip_duration_seconds": 2.0,
13
+ "mfcc": {
14
+ "num_coefficients": 13,
15
+ "frame_length_seconds": 0.025,
16
+ "frame_stride_seconds": 0.01,
17
+ "filter_number": 32,
18
+ "fft_length": 256,
19
+ "normalization_window_size": 101,
20
+ "low_frequency_hz": 20,
21
+ "high_frequency_hz": 4000,
22
+ "pre_emphasis_coefficient": 0.98
23
+ }
24
+ }
labels.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ background_noise
2
+ hey_android
3
+ unknown