CoolFace
Apppublic

jxtan/zero_gpu

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
app.py9 linesDownload Raw Back to root
1import spaces2import gradio as gr3 4@spaces.GPU5def greet(name):6    return "Hello " + name + "!!"7 8iface = gr.Interface(fn=greet, inputs="text", outputs="text")9iface.launch()