File size: 643 Bytes
21c3fb5
 
 
 
 
 
 
 
 
 
 
 
9c5eb46
 
21c3fb5
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import gradio as gr
from fastai.vision.all import *
import skimage

learn = load_learner('model.pkl')

labels = learn.dls.vocab
def predict(img):
    img = PILImage.create(img)
    pred,pred_idx,probs = learn.predict(img)
    return pred

title = "CLasifica Jerrys jaja Pajaros (parcial final PIB)"
description = "Parcial Final para el profe javier , PIB, clasificacion de pajaros"
examples = ['3.jpg','5.jpg','images.jpeg']
enable_queue=True

gr.Interface(fn=predict,inputs=gr.inputs.Image(shape=(224, 224)),outputs=gr.outputs.Label(num_top_classes=1),title=title,description=description,examples=examples,enable_queue=enable_queue).launch()