Upload README.md with huggingface_hub
Browse files
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 (
|
| 13 |
-
| deepfilter-auxiliary.bin | ERB filterbanks + Vorbis window |
|
| 14 |
|
| 15 |
-
##
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
|