Voice Activity Detection
pyannote.audio
PyTorch
pyannote
pyannote-audio-model
audio
voice
speech
speaker
speaker-segmentation
overlapped-speech-detection
resegmentation
Instructions to use zermok/segmentation with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- pyannote.audio
How to use zermok/segmentation with pyannote.audio:
from pyannote.audio import Model, Inference model = Model.from_pretrained("zermok/segmentation") inference = Inference(model) # inference on the whole file inference("file.wav") # inference on an excerpt from pyannote.core import Segment excerpt = Segment(start=2.0, end=5.0) inference.crop("file.wav", excerpt) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -21,7 +21,7 @@ extra_gated_fields:
|
|
| 21 |
---
|
| 22 |
|
| 23 |
Using this open-source model in production?
|
| 24 |
-
|
| 25 |
|
| 26 |
|
| 27 |
# 🎹 Speaker segmentation
|
|
|
|
| 21 |
---
|
| 22 |
|
| 23 |
Using this open-source model in production?
|
| 24 |
+
Consider switching to [pyannoteAI](https://www.pyannote.ai) for better and faster options.
|
| 25 |
|
| 26 |
|
| 27 |
# 🎹 Speaker segmentation
|