Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
blocks-dev-test
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1aaa5dd
blocks-dev-test
/
app.py
abidlabs
HF Staff
Update app.py
1aaa5dd
about 3 years ago
raw
Copy download link
history
blame
Safe
184 Bytes
import
gradio
as
gr
with
gr.Blocks()
as
demo:
a = gr.Textbox()
b = gr.Textbox()
c = gr.Textbox()
a.change(
lambda
x:
2
*x, a, b)
a.change(
lambda
x:
3
*x, a, c)
demo.launch()