Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
4 |
|
5 |
-
|
6 |
|
7 |
-
|
8 |
-
|
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_waling.jpg', 'dog.jpg']
|
6 |
|
7 |
+
interface = gr.Interface(fn=horse_jump_model, inputs="text", outputs="text", examples=examples)
|
8 |
+
|
9 |
+
interface.launch()
|