Automatic Speech Recognition
ONNX
pyannote.audio
multilingual
onnxruntime
pyannote
speaker-diarization
speaker-change-detection
voice-activity-detection
audio
Instructions to use FredrikKarlssonSpeech/pyannote-speaker-diarization-onnx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- pyannote.audio
How to use FredrikKarlssonSpeech/pyannote-speaker-diarization-onnx with pyannote.audio:
from pyannote.audio import Model, Inference model = Model.from_pretrained("FredrikKarlssonSpeech/pyannote-speaker-diarization-onnx") 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
Ctrl+K