Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
spark-ds549
/
Chinese-Label-Transcription
like
1
Sleeping
App
Files
Files
Community
3
5884368
Chinese-Label-Transcription
/
app.py
tomgee
Add application file
5884368
almost 2 years ago
raw
Copy download link
history
blame
Safe
151 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()