Bestakdv's picture
Update app.py
94216e1 verified
raw
history blame contribute delete
295 Bytes
import gradio as gr
with gr.Blocks(fill_height=True) as demo:
with gr.Sidebar():
gr.Markdown("# Inference Provider")
button = gr.LoginButton("Sign in")
gr.load("models/dima806/music_genres_classification", accept_token=button, provider="hf-inference")
demo.launch()