Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abidlabs
/
test1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test1
/
app.py
abidlabs
HF Staff
Update app.py
f73529f
over 3 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
143 Bytes
import
gradio
as
gr
def
predict
(
x
):
return
gr.__version__
iface = gr.Interface(fn=predict, inputs=
'text'
, outputs=
'text'
)
iface.launch()