File size: 744 Bytes
2b7215d
2389515
38783f2
a1fb560
38783f2
2b7215d
2389515
c555ad4
2389515
 
2b7215d
a1fb560
2389515
2b7215d
2389515
c555ad4
2389515
 
 
c555ad4
a1fb560
 
 
 
2389515
 
e1abdb3
2389515
38783f2
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
# AUTOGENERATED! DO NOT EDIT! File to edit: notebook.ipynb.

# %% auto 0
__all__ = ['learn', 'categories', 'examples', 'image', 'label', 'intf', 'classify_image']

# %% notebook.ipynb 2
from fastai.vision.all import *
import gradio as gr
import timm

# %% notebook.ipynb 3
learn = load_learner('model.pkl')

# %% notebook.ipynb 4
categories = learn.dls.vocab

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

# %% notebook.ipynb 5
examples = ['images/unicycle.jpeg', 'images/bicycle.jpeg', 'images/tricycle.png']

# %% notebook.ipynb 7
image = gr.Image()
label = gr.Label()

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