lmsys/lmsys-chat-1m
Viewer • Updated • 1M • 7.58k • 920
How to use Sebilay/niko-ai with pyannote.audio:
from pyannote.audio import Model, Inference
model = Model.from_pretrained("Sebilay/niko-ai")
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
meta-llama/Meta-Llama-3-8B-Instruct