Spaces:
Sleeping
Sleeping
File size: 263 Bytes
8958df1 37c02c5 dbc44b1 19991af dbc44b1 84cd380 37c02c5 |
1 2 3 4 5 6 7 8 9 10 |
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=classify_image, inputs=image, outputs=label, examples=examples)
interface.launch()
|