ILSVRC/imagenet-1k
Viewer • Updated • 1.43M • 126k • 872
How to use Jaljalissimo/Verbum with pyannote.audio:
from pyannote.audio import Model, Inference
model = Model.from_pretrained("Jaljalissimo/Verbum")
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)Base model
google/gemma-4-E4B
from pyannote.audio import Model, Inference model = Model.from_pretrained("Jaljalissimo/Verbum") 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)