Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
|
|
|
|
3 |
horse_jump_model = gr.load("models/Schmucas/horse_jump_model")
|
4 |
|
5 |
examples = ['horse_jumping.jpg', 'horse_walking.jpg', 'dog.jpg']
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
image = gr.inputs.Image(shape=(192,192))
|
4 |
+
|
5 |
+
label = gr.output.Label()
|
6 |
+
|
7 |
horse_jump_model = gr.load("models/Schmucas/horse_jump_model")
|
8 |
|
9 |
examples = ['horse_jumping.jpg', 'horse_walking.jpg', 'dog.jpg']
|