tonythethompson commited on
Commit
3e6afc4
·
verified ·
1 Parent(s): a621e63

Normalize README Source provenance table across repos

Browse files
Files changed (1) hide show
  1. README.md +74 -73
README.md CHANGED
@@ -1,73 +1,74 @@
1
- ---
2
- license: mit
3
- base_model: onnx-community/silero-vad
4
- base_model_relation: quantized
5
- pipeline_tag: voice-activity-detection
6
- library_name: onnxruntime
7
- language:
8
- - multilingual
9
- tags:
10
- - onnx
11
- - onnxruntime
12
- - silero-vad
13
- - vad
14
- - voice-activity-detection
15
- - int8
16
- - quantized
17
- - audio
18
- ---
19
-
20
- # Silero VAD — INT8 ONNX
21
-
22
- INT8-quantized ONNX export of Silero VAD, an open-weight voice activity detection model.
23
- The immediate upstream source is
24
- [onnx-community/silero-vad](https://huggingface.co/onnx-community/silero-vad); the
25
- original model is from the Silero team (snakers4/silero-vad on GitHub). This is not a
26
- newly trained model.
27
-
28
- ## Source
29
-
30
- | Field | Value |
31
- |---|---|
32
- | Upstream ONNX repo | [onnx-community/silero-vad](https://huggingface.co/onnx-community/silero-vad) |
33
- | Original model | [snakers4/silero-vad](https://github.com/snakers4/silero-vad) (GitHub) |
34
- | Source revision/hash | `e71cae966052b992a7eca6b17738916ce0eca4ec` ([onnx-community/silero-vad](https://huggingface.co/onnx-community/silero-vad)) |
35
- | Quantization recipe | Pre-quantized INT8 ONNX mirrored from `onnx-community/silero-vad` (`onnx/model_int8.onnx`) |
36
-
37
- ## Files
38
-
39
- | File | Size | Description |
40
- |---|---|---|
41
- | `onnx/model_int8.onnx` | ~624 KB | INT8 ONNX model |
42
-
43
- ## Intended Use
44
-
45
- Voice activity detection for local inference via ONNX Runtime. The INT8 variant is the
46
- CPU/low-resource build: smaller and faster on CPU than the FP16 variant. The FP16 variant
47
- is in [`tonythethompson/silero-vad-fp16-onnx`](https://huggingface.co/tonythethompson/silero-vad-fp16-onnx).
48
- Silero VAD is language-agnostic and works across a wide range of languages.
49
-
50
- ## Runtime Notes
51
-
52
- - Designed for ONNX Runtime compatible runtimes.
53
- - Expected input: 16 kHz mono audio (Silero VAD requirement).
54
- - INT8 is broadly compatible across CPU hardware (x86-64, ARM). Validate on the target
55
- execution provider before production use.
56
-
57
- ## Precision and Packaging
58
-
59
- INT8 quantization from the ONNX Community export (mirrored unchanged). Some accuracy loss relative to FP16/FP32 is expected,
60
- but Silero VAD is small and INT8 quality is generally acceptable for VAD. No parity
61
- benchmark is documented here.
62
-
63
- ## Limitations
64
-
65
- - Requires 16 kHz mono audio input; other sample rates must be resampled.
66
- - INT8 may reduce detection sensitivity at the margins (very quiet or very short speech).
67
- - No repository-specific VAD quality benchmark is documented here.
68
-
69
- ## License
70
-
71
- [MIT](https://choosealicense.com/licenses/mit/) — inherited from
72
- `onnx-community/silero-vad` and the original Silero VAD model. This packaging repo adds
73
- no new license terms.
 
 
1
+ ---
2
+ license: mit
3
+ base_model: onnx-community/silero-vad
4
+ base_model_relation: quantized
5
+ pipeline_tag: voice-activity-detection
6
+ library_name: onnxruntime
7
+ language:
8
+ - multilingual
9
+ tags:
10
+ - onnx
11
+ - onnxruntime
12
+ - silero-vad
13
+ - vad
14
+ - voice-activity-detection
15
+ - int8
16
+ - quantized
17
+ - audio
18
+ ---
19
+
20
+ # Silero VAD — INT8 ONNX
21
+
22
+ INT8-quantized ONNX export of Silero VAD, an open-weight voice activity detection model.
23
+ The immediate upstream source is
24
+ [onnx-community/silero-vad](https://huggingface.co/onnx-community/silero-vad); the
25
+ original model is from the Silero team (snakers4/silero-vad on GitHub). This is not a
26
+ newly trained model.
27
+
28
+ ## Source
29
+
30
+ | Field | Value |
31
+ |---|---|
32
+ | Upstream model | [onnx-community/silero-vad](https://huggingface.co/onnx-community/silero-vad) |
33
+ | Upstream source revision | `e71cae966052b992a7eca6b17738916ce0eca4ec` |
34
+ | Export tool/script | Mirrored from onnx-community (no re-export) |
35
+ | Quantization recipe | Pre-quantized INT8 ONNX mirrored from `onnx/model_int8.onnx` |
36
+ | Original model | [snakers4/silero-vad](https://github.com/snakers4/silero-vad) (GitHub) |
37
+
38
+ ## Files
39
+
40
+ | File | Size | Description |
41
+ |---|---|---|
42
+ | `onnx/model_int8.onnx` | ~624 KB | INT8 ONNX model |
43
+
44
+ ## Intended Use
45
+
46
+ Voice activity detection for local inference via ONNX Runtime. The INT8 variant is the
47
+ CPU/low-resource build: smaller and faster on CPU than the FP16 variant. The FP16 variant
48
+ is in [`tonythethompson/silero-vad-fp16-onnx`](https://huggingface.co/tonythethompson/silero-vad-fp16-onnx).
49
+ Silero VAD is language-agnostic and works across a wide range of languages.
50
+
51
+ ## Runtime Notes
52
+
53
+ - Designed for ONNX Runtime compatible runtimes.
54
+ - Expected input: 16 kHz mono audio (Silero VAD requirement).
55
+ - INT8 is broadly compatible across CPU hardware (x86-64, ARM). Validate on the target
56
+ execution provider before production use.
57
+
58
+ ## Precision and Packaging
59
+
60
+ INT8 quantization from the ONNX Community export (mirrored unchanged). Some accuracy loss relative to FP16/FP32 is expected,
61
+ but Silero VAD is small and INT8 quality is generally acceptable for VAD. No parity
62
+ benchmark is documented here.
63
+
64
+ ## Limitations
65
+
66
+ - Requires 16 kHz mono audio input; other sample rates must be resampled.
67
+ - INT8 may reduce detection sensitivity at the margins (very quiet or very short speech).
68
+ - No repository-specific VAD quality benchmark is documented here.
69
+
70
+ ## License
71
+
72
+ [MIT](https://choosealicense.com/licenses/mit/) inherited from
73
+ `onnx-community/silero-vad` and the original Silero VAD model. This packaging repo adds
74
+ no new license terms.