File size: 598 Bytes
ce40a54
 
 
c168ded
 
 
 
ce40a54
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9e5d53e
ce40a54
9e5d53e
ce40a54
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
import fastbook
fastbook.setup_book()

from PIL import Image
import requests
import gradio as gr

from fastbook import *
from fastai.vision.widgets import *

path = Path()
path.ls(file_exts='.pkl')

learn_inf = load_learner(path/'export.pkl')

categories = ('grizzly', 'black', 'teddy')

def classify_image(img):
    pred,idx,probs = learn_inf.predict(img)
    return dict(zip(categories, map(float,probs)))

image = gr.inputs.Image(shape=(192,192))
label = gr.outputs.Label()
#examples = ['bear.jpg']

intf = gr.Interface(fn = classify_image, inputs=image, outputs=label)
intf.launch(inline=False)