File size: 575 Bytes
a8b8b66
 
c252095
a8b8b66
 
20b917b
a8b8b66
 
 
 
c252095
a8b8b66
 
 
 
c252095
a8b8b66
 
 
c252095
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import gradio as gr
from fastai.vision.all import *
import skimage

# load image classifier
learn = load_learner('resnet101_waste_recogniser.pkl')

# get classes of waste
labels = learn.dls.vocab

# define a function for the learner
# define a function for the learner
def predict(img):
    img = PILImage.create(img)
    pred,pred_idx,probs = learn.predict(img)

    return {labels[i]: float(probs[i]) for i in range(len(labels))}

# make a gradio interface
gr.Interface(fn=predict, inputs=gr.Image(shape=(512, 512)), outputs=gr.Label(num_top_classes=3)).launch(share=False)