myfirstmodel / app.py
skamalad's picture
pkl file and new images
2a4e58a
raw
history blame contribute delete
187 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
# Checking for git commit changes
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()