alkzar90's picture
Update app.py
97e4e05
raw
history blame
679 Bytes
import os
import gradio as gr
os.system("wget -O crusader_peco_peco.png https://huggingface.co/alkzar90/croupier-creature-classifier/resolve/main/examples/crusader_peco_peco.png")
os.system("wget -O goblin_wow.png https://huggingface.co/alkzar90/croupier-creature-classifier/resolve/main/examples/goblin_wow.png")
iface = gr.Interface.load('alkzar90/croupier-creature-classifier',
src='models',
title='Bestiario',
description='Tu guía para identificar criaturas',
examples=[['crusader_peco_peco.png'], ['goblin_wow.png']])
if __name__ == "__main__":
iface.launch()