File size: 576 Bytes
835040b
 
 
 
 
 
 
4aabb1b
 
835040b
 
 
 
 
 
4aabb1b
835040b
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# AUTOGENERATED! DO NOT EDIT! File to edit: app.ipynb.

# %% auto 0
__all__ = ['learn', 'categories', 'classify_image']

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

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

# %% app.ipynb 7
# NOTE: Put in alphabetical order
categories = ('ash', 'chestnut', 'ginkgo biloba', 'silver maple', 'willow oak')

def classify_image(img):
  pred, idx, probs = learn.predict(img)
  # Change each probability to a float, since Gradio doesn't support Tensors or NumPy
  return dict(zip(categories, map(float, probs)))