Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hysts-debug
/
slider-example
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8b59027
slider-example
/
app.py
hysts
HF staff
Create app.py
8b59027
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
182 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
slider = gr.Slider(minimum=-
5
, maximum=
5
, step=
1
, value=
3
)
gr.Examples(examples=[-
2
, -
1
,
0
,
1
,
2
], inputs=slider)
demo.launch()