Papers / app.py
zhangxulong's picture
arxiv bib
71eef75
raw
history blame contribute delete
No virus
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()