Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
seanghay
/
khmer-g2p-ipa
like
0
Build error
App
Files
Files
Community
8daa527
khmer-g2p-ipa
/
app.py
seanghay
Add application file
3d783a8
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
150 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()