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...
a029d83
audiveris4
/
app.py
soiz1
Create app.py
a029d83
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
194 Bytes
import
gradio
as
gr
def
say_hello
():
return
"Hello, world!"
demo = gr.Interface(
fn=say_hello,
inputs=
None
,
outputs=
"text"
,
title=
"Hello World Gradio App"
)
demo.launch()