Tirath5504's picture
Update app.py
0ed4adc verified
raw
history blame contribute delete
No virus
453 Bytes
from transformers import pipeline
import gradio as gr
model_id = "Tirath5504/distilhubert-finetuned-gtzan"
pipe = pipeline("audio-classification", model=model_id)
def classify_audio(filepath):
preds = pipe(filepath)
outputs = {}
for p in preds:
outputs[p["label"]] = p["score"]
return outputs
demo = gr.Interface(
fn=classify_audio, inputs=gr.Audio(type="filepath"), outputs=gr.Label(), live=True
)
demo.launch(debug=True)