File size: 295 Bytes
8b8741d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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()