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...
abidlabs
HF Staff
commited on
Jun 2, 2022
Commit
1905f87
·
1 Parent(s):
8e35f2f
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
a = gr.Textbox()
5
+
b = gr.Textbox()
6
+
c = gr.Textbox()
7
+
8
+
a.change(lambda x:2*x, a, b)
9
+
a.change(lambda x:3*x, a, c)
10
+
11
+
demo.launch()