owl_detector / app.py
ArpitaShenoy's picture
changes to imports
9dc333c
raw
history blame
No virus
498 Bytes
__all__ = ['learn', 'categories', 'classify_images', 'image', 'label', 'intf']
from fastai.vision.all import *
import gradio as gr
learn = load_learner('export.pkl')
categories = ('barn', 'barred', 'snowy')
def classify__images(img):
preds,idx,probs = learn.predict(img)
return dict(zip(categories, map(float, probs)))
image = gr.inputs.Image(shape=(192,192))
label = gr.outputs.Label()
intf = gr.Interface(fn=classify__images, inputs=image, outputs=label)
intf.launch(inline=False)