Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
soiz1
/
audiveris4
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
soiz1
commited on
Jul 10
Commit
a029d83
·
verified
·
1 Parent(s):
ba3b035
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+13
-0
app.py
ADDED
Viewed
@@ -0,0 +1,13 @@
1
+
import gradio as gr
2
+
3
+
def say_hello():
4
+
return "Hello, world!"
5
+
6
+
demo = gr.Interface(
7
+
fn=say_hello,
8
+
inputs=None,
9
+
outputs="text",
10
+
title="Hello World Gradio App"
11
+
)
12
+
13
+
demo.launch()