Spaces:
Runtime error
Runtime error
Upload 4 files
Browse files- app.py +19 -0
- black-bear.jpg +0 -0
- grizzly-bear.jpg +0 -0
- model.pkl +3 -0
app.py
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
__all__ = ['learn', 'classify_image', 'categories', 'image', 'label', 'examples', 'intf' ]
|
2 |
+
|
3 |
+
from fastai.vision.all import *
|
4 |
+
import gradio as gr
|
5 |
+
|
6 |
+
learn = load_learner('model.pkl')
|
7 |
+
|
8 |
+
categories = ('black', 'grizzly', 'koala')
|
9 |
+
|
10 |
+
def classify_image(img):
|
11 |
+
pred, idx, probs = learn.predict(img)
|
12 |
+
return dict(zip(categories, map(float, probs)))
|
13 |
+
|
14 |
+
image = gr.inputs.Image(shape=(192, 192))
|
15 |
+
label = gr.outputs.Label()
|
16 |
+
examples = ['black-bear.jpg', 'grizzly-bear.jpg']
|
17 |
+
|
18 |
+
intf = gr.Interface(fn = classify_image, inputs = image, outputs = label, examples = examples)
|
19 |
+
intf.launch(inline = False)
|
black-bear.jpg
ADDED
grizzly-bear.jpg
ADDED
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:86dca289cac268ce79db0151af2ec4b47806407c13d6d2bbe953e389da2ce3d3
|
3 |
+
size 46961213
|