modified README.md f260c50
Anil Battalahalli Sreenath commited on
How to use anilbs/segmentation with pyannote.audio:
from pyannote.audio import Model, Inference
model = Model.from_pretrained("anilbs/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)