You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bindings/ruby/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -134,20 +134,20 @@ Support for Voice Activity Detection (VAD) can be enabled by setting `Whisper::P
134
134
```ruby
135
135
Whisper::Params.new(
136
136
vad:true,
137
-
vad_model_path:"silero-v5.1.2",
137
+
vad_model_path:"silero-v6.2.0",
138
138
# other arguments...
139
139
)
140
140
```
141
141
142
-
When you pass the model name (`"silero-v5.1.2"`) or URI (`https://huggingface.co/ggml-org/whisper-vad/resolve/main/ggml-silero-v5.1.2.bin`), it will be downloaded automatically.
143
-
Currently, "silero-v5.1.2" is registered as pre-converted model like ASR models. You also specify file path or URI of model.
142
+
When you pass the model name (`"silero-v6.2.0"`) or URI (`https://huggingface.co/ggml-org/whisper-vad/resolve/main/ggml-silero-v6.2.0.bin`), it will be downloaded automatically.
143
+
Currently, "silero-v6.2.0" is registered as pre-converted model like ASR models. You also specify file path or URI of model.
144
144
145
145
If you need configure VAD behavior, pass params for that:
146
146
147
147
```ruby
148
148
Whisper::Params.new(
149
149
vad:true,
150
-
vad_model_path:"silero-v5.1.2",
150
+
vad_model_path:"silero-v6.2.0",
151
151
vad_params:Whisper::VAD::Params.new(
152
152
threshold:1.0, # defaults to 0.5
153
153
min_speech_duration_ms:500, # defaults to 250
@@ -330,7 +330,7 @@ Using VAD separately from ASR
330
330
VAD feature itself is useful. You can use it separately from ASR:
0 commit comments