aufklarer commited on
Commit
da6e607
·
verified ·
1 Parent(s): ee4210e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +12 -4
README.md CHANGED
@@ -6,11 +6,19 @@ license: mit
6
 
7
  Real-time noise cancellation for [speech-android](https://github.com/soniqo/speech-android).
8
 
 
 
 
9
  ## Files
10
  | File | Description |
11
  |------|-------------|
12
- | deepfilter.onnx | Neural network (pendinginstall deepfilternet to export) |
13
- | deepfilter-auxiliary.bin | ERB filterbanks + Vorbis window |
14
 
15
- ## Part of
16
- [aufklarer/speech-android-models](https://huggingface.co/collections/aufklarer/speech-android-models)
 
 
 
 
 
 
6
 
7
  Real-time noise cancellation for [speech-android](https://github.com/soniqo/speech-android).
8
 
9
+ - **2.1M params**, real-time at 48 kHz
10
+ - STFT: 960-point FFT, 480 hop
11
+
12
  ## Files
13
  | File | Description |
14
  |------|-------------|
15
+ | deepfilter.onnx | Neural network (~8 MB) pending export |
16
+ | deepfilter-auxiliary.bin | ERB filterbanks + Vorbis window (124 KB) |
17
 
18
+ ## Tensors
19
+ | I/O | Name | Shape | Type |
20
+ |-----|------|-------|------|
21
+ | in | feat_erb | [1, 1, T, 32] | float32 |
22
+ | in | feat_spec | [1, 2, T, 96] | float32 |
23
+ | out | erb_mask | [1, 1, T, 32] | float32 |
24
+ | out | df_coefs | [1, 5, T, 96, 2] | float32 |