Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
facebook/MusicGen
OnyxMunk
/
MusicGen
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
MusicGen
/
demos
/
app_minimal.py
OnyxMunk
Upload folder using huggingface_hub
93e00ec
verified
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
143 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()