omarhkh's picture
Update app.py
b41d696
raw
history blame
279 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").launch()