mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-12 10:34:32 +08:00
6 lines
144 B
Python
6 lines
144 B
Python
import gradio as gr
|
|
|
|
with gr.Blocks() as demo:
|
|
gr.Label(value={"First Label": 0.7, "Second Label": 0.2, "Third Label": 0.1})
|
|
|
|
demo.launch() |