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

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

diarization_filtered_v2

This is a fine-tuned speaker diarization model based on pyannote.audio, specifically trained on Bengali audio data.

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

Evaluation results