cstr commited on
Commit
96866b5
·
verified ·
1 Parent(s): 164d0ab

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - multilingual
5
+ pipeline_tag: voice-activity-detection
6
+ tags:
7
+ - audio
8
+ - vad
9
+ - voice-activity-detection
10
+ - gguf
11
+ - firered
12
+ - dfsmn
13
+ library_name: ggml
14
+ base_model: FireRedTeam/FireRedVAD
15
+ ---
16
+
17
+ # FireRedVAD -- GGUF
18
+
19
+ GGUF conversions of [`FireRedTeam/FireRedVAD`](https://huggingface.co/FireRedTeam/FireRedVAD) for use with **[CrispStrobe/CrispASR](https://github.com/CrispStrobe/CrispASR)**.
20
+
21
+ ## Available variants
22
+
23
+ | File | Variant | Size | Params | Notes |
24
+ |---|---|---|---|---|
25
+ | `firered-vad.gguf` | VAD | 2.4 MB | 588K | Non-streaming, lookback+lookahead |
26
+ | `firered-stream-vad.gguf` | Stream-VAD | 2.3 MB | 568K | Streaming (no lookahead) |
27
+ | `firered-aed-vad.gguf` | AED | 2.4 MB | 589K | Multi-label: speech/singing/music |
28
+
29
+ All variants are F32 (no quantization needed — models are already tiny).
30
+
31
+ ## Model details
32
+
33
+ - **Architecture:** DFSMN (Deep Feedforward Sequential Memory Network) — 8 blocks with depthwise lookback/lookahead convolutions (k=20)
34
+ - **Parameters:** ~588K (2.4 MB)
35
+ - **Languages:** 100+ (language-agnostic voice activity detection)
36
+ - **F1 Score:** 97.57% on FLEURS-VAD-102 (outperforms Silero-VAD, TEN-VAD, FunASR-VAD, WebRTC-VAD)
37
+ - **License:** Apache 2.0
38
+
39
+ ## Conversion
40
+
41
+ ```bash
42
+ python models/convert-firered-vad-to-gguf.py --input FireRedTeam/FireRedVAD --variant VAD --output firered-vad.gguf
43
+ ```