pinder_inference_template / inference_app.py
Simon Dürr
conda image
dffaf30
raw
history blame
138 Bytes
import gradio as gr
def greet(name):
return f"Hello {name}!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text").launch()