briaai-RMBG-2.0 / app.py
Rikki-hf's picture
initial commit
6dcf20b verified
Raw
History Blame Contribute Delete
402 Bytes
import gradio as gr
with gr.Blocks(fill_height=True) as demo:
with gr.Sidebar():
gr.Markdown("# Inference Provider")
gr.Markdown("This Space showcases the briaai/RMBG-2.0 model. Sign in with your Hugging Face account to use this API.")
button = gr.LoginButton("Sign in")
gr.load("models/briaai/RMBG-2.0:fastest", accept_token=button, provider="auto")
demo.launch()