File size: 919 Bytes
af12be0
 
e8f0870
d65491c
843202d
e77cc6c
187a885
843202d
eb465e7
 
 
4e799be
843202d
af12be0
 
4e799be
 
 
af12be0
 
4e799be
af12be0
4e799be
187a885
 
ee73d60
4e799be
187a885
af12be0
 
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
29
30
31
__all__ = ['learn', 'classify_image', 'categories',
           'image', 'label', 'examples', 'intf']

import timm
import gradio as gr
from fastai.vision.all import *
import skimage

TITLE = Path("docs/title.txt").read_text()
DESCRIPTION = Path("docs/description.md").read_text()

learn = load_learner('model.pkl')

categories = ('airbaby', 'airchair', 'airflare', 'headspin', 'hollow back')


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


image = gr.inputs.Image(shape=(192, 192))
label = gr.outputs.Label()
examples = ['example1.jpg', 'example5.jpg',
            'example3.jpg', 'example8.jpg', 'example4.jpg',
            'example6.jpg', 'example2.jpg', 'example7.JPG']

intf = gr.Interface(fn=classify_image, title=TITLE, description=DESCRIPTION, inputs=image,
                    outputs=label, examples=examples)
intf.launch(inline=False)