Spaces:
Sleeping
Sleeping
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() | |