danielr-ceva commited on
Commit
14fb942
·
verified ·
1 Parent(s): 03cd46e

Update run_tflite.py

Browse files
Files changed (1) hide show
  1. run_tflite.py +1 -5
run_tflite.py CHANGED
@@ -14,13 +14,9 @@ TFLITE_DIR = Path('./')
14
  # -----------------------------------------------------------------------------
15
  # Model registry
16
  # -----------------------------------------------------------------------------
17
- # Each model declares the sample-rate it expects and the STFT window length
18
- # used during training/export.
19
- #
20
  # 16 kHz models: WIN_LEN=320 (20 ms)
21
  # 48 kHz models: WIN_LEN=960 (20 ms)
22
- #
23
- # Add your new 48 kHz model here (example key: "dpdfnet48k").
24
  MODEL_CONFIG = {
25
  # 16 kHz models
26
  "baseline": {"sr": 16000, "win_len": 320},
 
14
  # -----------------------------------------------------------------------------
15
  # Model registry
16
  # -----------------------------------------------------------------------------
 
 
 
17
  # 16 kHz models: WIN_LEN=320 (20 ms)
18
  # 48 kHz models: WIN_LEN=960 (20 ms)
19
+
 
20
  MODEL_CONFIG = {
21
  # 16 kHz models
22
  "baseline": {"sr": 16000, "win_len": 320},