fka/prompts.chat
Viewer • Updated • 1.81k • 55.8k • 9.69k
How to use 1989shack/1989shack-Ecommmerce-Platform with pyannote.audio:
from pyannote.audio import Model, Inference
model = Model.from_pretrained("1989shack/1989shack-Ecommmerce-Platform")
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
tencent/HunyuanVideo