Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
innova-ai
/
YuE-music-generator-demo
like
34
Running
on
Zero
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
KingNish
commited on
Jan 28
Commit
6c02161
·
verified
·
1 Parent(s):
cb99f94
dummy gradio
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
import gradio as gr
2
+
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!"
6
+
7
+
8
+
demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
9
+
10
+
if __name__ == "__main__":
11
+
demo.launch()