Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
llam
/
Papers
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
63ce3e8
Papers
/
app.py
zhangxulong
arxiv bib
71eef75
over 1 year ago
raw
Copy download link
history
blame
Safe
219 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
", more details welcome to visit https://largeaudiomodel.com/publication/"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()