File size: 609 Bytes
62feb1d
 
 
 
fa7aaae
 
5ee4d4f
 
 
 
 
 
7b815ef
 
5ee4d4f
 
 
 
 
 
7b815ef
5ee4d4f
 
 
868bf91
5ee4d4f
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

#from fastcore.all import *
from fastai.vision.all import *
from fastbook import load_learner
import gradio as gr

inf = load_learner('export.pkl')

#categories = ('Cat', 'Cheetah', 'Other', 'Leopard', 'Lion', 'Snow Leopard', 'Tiger')

def classify_img(img):
    pred, idx, probs = inf.predict(img)
    return pred
    #return dict(zip(categories,map(float,probs)))

    #|export

#This creates the gradio interface

image = gr.Image(shape=(192,192))
label = gr.outputs

#examples = ['cheetah.jpg','leopard.jpg','img.jpg']

intf = gr.Interface(fn = classify_img, inputs=image,outputs="label")

intf.launch()