jdinh's picture
updated examples
3e574cd
raw
history blame
696 Bytes
__all__ = ['learn', 'classify_image', 'categories',
'image', 'label', 'examples', 'intf']
import gradio as gr
from fastai.vision.all import *
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', 'example2.jpg',
'example3.jpg', 'example4.jpg', 'example5.jpg']
intf = gr.Interface(fn=classify_image, inputs=image,
outputs=label, examples=examples)
intf.launch(inline=False)