hftesting / app.py
jytole's picture
Reconfig app.py to get ready to try to train
837762b
raw
history blame
144 Bytes
import gradio as gr
def greet(name):
return ("hello" + name)
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()