File size: 1,524 Bytes
835040b
 
 
051daf1
 
835040b
 
 
3dd2b5e
4aabb1b
835040b
 
 
 
 
4aabb1b
835040b
 
 
 
b8dfde0
 
3dd2b5e
 
b8dfde0
 
051daf1
 
 
 
 
 
3dd2b5e
 
 
b8dfde0
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
31
32
33
34
35
36
37
# AUTOGENERATED! DO NOT EDIT! File to edit: app.ipynb.

# %% auto 0
__all__ = ['learn', 'categories', 'image', 'label', 'examples', 'title', 'description', 'article', 'interpretation', 'interface',
           'classify_image']

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

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

# %% app.ipynb 7
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)))

# %% app.ipynb 10
image = gradio.Image(shape=(192, 192))
label = gradio.Label()
examples = ['images/ash.jpg', 'images/chestnut.jpg', 'images/ginkgo_biloba.jpg',
            'images/silver_maple.jpg', 'images/willow_oak.jpg']
# More useful args
title = "Tree leaf classifier demo"
description = "A tree leaf classifier demo, trained on images downloaded from DuckDuckGo. Created as a demo of HuggingFace Spaces and Gradio."
article = "<p>From this blog post: <a href='https://briansigafoos.com/ml-quick-start' target='_blank'>Machine Learning quick start by Brian Sigafoos</a></p>"
interpretation = 'default'

interface = gradio.Interface(fn=classify_image, inputs=image, outputs=label,
                             examples=examples, title=title, description=description,
                             article=article, interpretation=interpretation)
interface.launch(inline=False)