omarhkh's picture
Update app.py
29f48ec
raw
history blame
323 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(
fn=greet,
inputs=gr.Textbox(lines=2, placeholder="Name Here..."),
outputs="text",
)
#demo.launch()
gr.Interface.load("models/omarhkh/resnet-50-finetuned-omar", title="This application for personal use").launch()