Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Metformin
/
test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0243e0b
test
/
app.py
Metformin
Update app.py
0466e9c
about 2 years ago
raw
Copy download link
history
blame
166 Bytes
import
gradio
as
gr
import
tensorflow
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()