Spaces:
Runtime error
Runtime error
Add image examples
Browse files- app.py +7 -1
- examples/crusader_peco_peco.png +0 -0
- examples/dobby_harry_potter.jpg +0 -0
- examples/goblin_wow.png +0 -0
- examples/resident_evil_nemesis.jpeg +0 -0
app.py
CHANGED
@@ -1,8 +1,14 @@
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
|
|
|
|
|
|
3 |
iface = gr.Interface.load('alkzar90/croupier-creature-classifier',
|
4 |
src='models',
|
5 |
title='Bestiario',
|
6 |
-
description='Tu guía para identificar criaturas'
|
|
|
7 |
|
8 |
iface.launch()
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
img_examples = ['./examples/crusader_peco_peco.png',
|
4 |
+
'./examples/goblin_wow.png',
|
5 |
+
'./examples/dobby_harry_potter.jpg',
|
6 |
+
'./examples/resident_evil_nemesis.jpeg']
|
7 |
+
|
8 |
iface = gr.Interface.load('alkzar90/croupier-creature-classifier',
|
9 |
src='models',
|
10 |
title='Bestiario',
|
11 |
+
description='Tu guía para identificar criaturas',
|
12 |
+
examples=img_examples)
|
13 |
|
14 |
iface.launch()
|
examples/crusader_peco_peco.png
ADDED
examples/dobby_harry_potter.jpg
ADDED
examples/goblin_wow.png
ADDED
examples/resident_evil_nemesis.jpeg
ADDED