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...
6b77284
zeroMN_SHMT
/
app.py
zeroMN
Update app.py
6b77284
verified
2 months ago
raw
Copy download link
history
blame
Safe
194 Bytes
import
gradio
as
gr
gr.load(
"models/zeroMN/auto"
).launch()
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"audio"
)
demo.launch(true)