Spaces:
Runtime error
Runtime error
Update repo
Browse files
app.py
CHANGED
@@ -1,10 +1,13 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
|
|
|
|
|
3 |
|
4 |
iface = gr.Interface.load('alkzar90/croupier-creature-classifier',
|
5 |
src='models',
|
6 |
title='Bestiario',
|
7 |
description='Tu guía para identificar criaturas',
|
8 |
-
examples=['crusader_peco_peco.png', 'goblin_wow
|
9 |
|
10 |
iface.launch()
|
|
|
1 |
+
import os
|
2 |
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']])
|
12 |
|
13 |
iface.launch()
|