Spaces:
Sleeping
Sleeping
File size: 502 Bytes
6196744 7b82363 6196744 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
from inference_kathbadh import inference_kathbadh
audio_1 = gr.Audio(sources="upload", type="filepath", label="Audio 1")
audio_2 = gr.Audio(sources="upload", type="filepath", label="Audio 2")
text_output = gr.Textbox(label="Similarity Score")
gr.Interface(
fn=inference_kathbadh,
inputs=[audio_1, audio_2],
outputs=text_output,
title="Speaker Verification",
description = "Speaker Verification using WavLM large model finetuned on Kathbadh dataset."
).launch()
|