xnohat commited on
Commit
55d5c73
·
verified ·
1 Parent(s): f42525d

Upload folder using huggingface_hub

Browse files
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2020-present Silero Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
README.md ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ pipeline_tag: voice-activity-detection
4
+ ---
config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "SileroVAD"
4
+ ],
5
+ "model_type": "silero_vad",
6
+ "id2label": {
7
+ "0": "no_speech",
8
+ "1": "speech"
9
+ },
10
+ "label2id": {
11
+ "no_speech": 0,
12
+ "speech": 1
13
+ },
14
+ "sampling_rate": 16000,
15
+ "threshold": 0.5,
16
+ "min_speech_duration_ms": 250,
17
+ "min_silence_duration_ms": 100,
18
+ "window_size_samples": 512,
19
+ "speech_pad_ms": 30,
20
+ "transformers_version": "4.30.2"
21
+ }
onnx/model.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4a068cd6cf1ea8355b84327595838ca748ec29a25bc91fc82e6c299ccdc5808
3
+ size 2243022
onnx/model_bnb4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e39b192962685cf99bfda19c272fd99837f1326fb8daa36a4be4ee0ac11ec50c
3
+ size 2243039
onnx/model_fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ed49c2c170aefe81e7e91b472a761d922ef3c064b6051068c2dc0ccc98bd53b
3
+ size 1153003
onnx/model_int8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:90b026c95f054d59d7bf79387b0ed93c8950f35a4d8b741cd78d4bb23a7d2776
3
+ size 639383
onnx/model_q4.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e39b192962685cf99bfda19c272fd99837f1326fb8daa36a4be4ee0ac11ec50c
3
+ size 2243039
onnx/model_q4f16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af158a6347067c11faed2bb1dd5144397473e10846ad8304d647e66e426318d7
3
+ size 1153020
onnx/model_quantized.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:982c96dc518784fb9d19bc7f56cc8252473b020e4f2099f32049e4ad0b3b43e7
3
+ size 639335
onnx/model_uint8.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:982c96dc518784fb9d19bc7f56cc8252473b020e4f2099f32049e4ad0b3b43e7
3
+ size 639335
preprocessor_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "feature_extractor_type": "Wav2Vec2FeatureExtractor",
3
+ "padding_side": "right",
4
+ "sampling_rate": 16000,
5
+ "return_attention_mask": true,
6
+ "do_normalize": true,
7
+ "feature_size": 1,
8
+ "padding_value": 0.0,
9
+ "max_length": null,
10
+ "truncation": true,
11
+ "padding": true
12
+ }