alkzar90 commited on
Commit
4ced05d
1 Parent(s): 8714072

Add dobby and nemesis example

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -3,12 +3,15 @@ import gradio as gr
3
 
4
  os.system("wget -O crusader_peco_peco.png https://huggingface.co/alkzar90/croupier-creature-classifier/resolve/main/examples/crusader_peco_peco.png")
5
  os.system("wget -O goblin_wow.png https://huggingface.co/alkzar90/croupier-creature-classifier/resolve/main/examples/goblin_wow.png")
 
 
 
6
 
7
  iface = gr.Interface.load('alkzar90/croupier-creature-classifier',
8
  src='models',
9
  title='Bestiario',
10
  description='Tu guía para identificar criaturas',
11
- examples=[['crusader_peco_peco.png'], ['goblin_wow.png']],
12
  cache_examples=False)
13
 
14
 
 
3
 
4
  os.system("wget -O crusader_peco_peco.png https://huggingface.co/alkzar90/croupier-creature-classifier/resolve/main/examples/crusader_peco_peco.png")
5
  os.system("wget -O goblin_wow.png https://huggingface.co/alkzar90/croupier-creature-classifier/resolve/main/examples/goblin_wow.png")
6
+ os.system("wget -O dobby_harry_potter.jpg https://huggingface.co/alkzar90/croupier-creature-classifier/resolve/main/examples/dobby_harry_potter.jpg")
7
+ os.system("wget -O resident_evil_nemesis.jpeg https://huggingface.co/alkzar90/croupier-creature-classifier/resolve/main/examples/resident_evil_nemesis.jpeg")
8
+
9
 
10
  iface = gr.Interface.load('alkzar90/croupier-creature-classifier',
11
  src='models',
12
  title='Bestiario',
13
  description='Tu guía para identificar criaturas',
14
+ examples=[['crusader_peco_peco.png'], ['goblin_wow.png'], ['dobby_harry_potter.jpg'], ['resident_evil_nemesis.jpeg']],
15
  cache_examples=False)
16
 
17