Schmucas's picture
Update app.py
d90341a verified
raw
history blame
294 Bytes
import gradio as gr
label = gr.output.Label()
horse_jump_model = gr.load("models/Schmucas/horse_jump_model")
examples = ['horse_jumping.jpg', 'horse_walking.jpg', 'dog.jpg']
interface = gr.Interface(fn=horse_jump_model, inputs="image", outputs=label, examples=examples)
interface.launch()