Schmucas commited on
Commit
256f3d7
·
verified ·
1 Parent(s): 19991af

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -4,6 +4,6 @@ horse_jump_model = gr.load("models/Schmucas/horse_jump_model")
4
 
5
  examples = ['horse_jumping.jpg', 'horse_walking.jpg', 'dog.jpg']
6
 
7
- interface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
8
 
9
  interface.launch()
 
4
 
5
  examples = ['horse_jumping.jpg', 'horse_walking.jpg', 'dog.jpg']
6
 
7
+ interface = gr.Interface(fn=horse_jump_model, inputs=image, outputs=label, examples=examples)
8
 
9
  interface.launch()