alkzar90 commited on
Commit
2b85439
1 Parent(s): 6a06e20

Fix example path

Browse files
Files changed (1) hide show
  1. app.py +1 -6
app.py CHANGED
@@ -1,14 +1,9 @@
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()
 
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
+ examples='/examples')
8
 
9
  iface.launch()