Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
test-gr
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
abidlabs
HF Staff
commited on
Jun 7, 2022
Commit
7ccddf3
·
1 Parent(s):
70406a2
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+4
-1
app.py
CHANGED
Viewed
@@ -1,3 +1,6 @@
1
import gradio as gr
2
3
-
gr.
Tabs
()
1
import gradio as gr
2
3
+
io1=
gr.
Interface
(
lambda x:x, "text", "text"
)
4
+
io2= gr.Interface(lambda x:x, "image", "image")
5
+
6
+
gr.TabbedInterface([io1, io2]).launch()