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...
main
test-gr
/
app.py
abidlabs
HF Staff
Update app.py
7ccddf3
about 3 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
155 Bytes
import
gradio
as
gr
io1= gr.Interface(
lambda
x:x,
"text"
,
"text"
)
io2= gr.Interface(
lambda
x:x,
"image"
,
"image"
)
gr.TabbedInterface([io1, io2]).launch()