CoolFace
Apppublic

simone-papicchio/qatch_evaluate

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
app.py10 linesDownload Raw Back to root
1import gradio as gr2 3 4def greet(name):5    return "Hello " + name + "!!"6 7 8demo = gr.Interface(fn=greet, inputs="text", outputs="text")9demo.launch()10