Schmucas's picture
Update app.py
256f3d7 verified
raw
history blame
265 Bytes
import gradio as gr
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()