How to use from the
Use from the
pyannote.audio library
from pyannote.audio import Model, Inference

model = Model.from_pretrained("medkit/simsamu-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)

Simsamu segmentation model

Segmentation model to be used with diarization pipeline simsamu-diarization

Downloads last month
2
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train medkit/simsamu-segmentation