Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
undertheseanlp
/
UTS_IPA
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
UTS_IPA
/
app.py
rain1024
update
096364a
about 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
175 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"! Welcome to Underthesea."
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()