How to use Revai/reverb-diarization-v2 with pyannote.audio:
from pyannote.audio import Model, Inference model = Model.from_pretrained("Revai/reverb-diarization-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)
How to use Revai/reverb-diarization-v2 with Reverb:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
The community tab is the place to discuss and collaborate with the HF community!