Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zeroMN
/
zeroMN_SHMT
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c8ae9d8
zeroMN_SHMT
/
app.py
zeroMN
Update app.py
c8ae9d8
verified
3 months ago
raw
Copy download link
history
blame
Safe
201 Bytes
import
gradio
as
gr
gr.load(
"huggingface"
,
"zeroMN/zeroMN_SHMT"
)
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"audio"
)
demo.launch(true)