Spaces:
Sleeping
Sleeping
File size: 696 Bytes
39c77b4 6459c4f 39c77b4 6459c4f 39c77b4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# AUTOGENERATED! DO NOT EDIT! File to edit: exportmodel.ipynb.
# %% auto 0
__all__ = ['learn', 'categories', 'image', 'label', 'intf', 'classify_image']
# %% exportmodel.ipynb 1
from fastai.vision.all import *
import gradio as gr
# %% exportmodel.ipynb 3
learn = load_learner("bears.pkl")
# %% exportmodel.ipynb 5
categories = ('Black Bear', 'Grizzly Bear', 'Teddy Bear')
def classify_image(img):
pred, idx, probs = learn.predict(img)
return dict(zip(categories, map(float, probs)))
# %% exportmodel.ipynb 7
image = gr.Image(height=250, width=250)
label = gr.Label()
intf = gr.Interface(fn = classify_image, inputs = image, outputs = label)
intf.launch(inline = False, share = True)
|