Spaces:
Runtime error
Runtime error
Commit
Β·
5e01d60
1
Parent(s):
52e07fb
removed unnecessary comments introduced by nbdev
Browse files
app.py
CHANGED
@@ -1,28 +1,18 @@
|
|
1 |
# AUTOGENERATED! DO NOT EDIT! File to edit: testnbdev.ipynb.
|
2 |
-
|
3 |
-
# %% auto 0
|
4 |
-
__all__ = ['learn', 'categories', 'image', 'label', 'examples', 'iface', 'is_cat', 'classify_image']
|
5 |
-
|
6 |
-
# %% testnbdev.ipynb 53
|
7 |
from fastai.vision.all import *
|
8 |
import gradio as gr
|
9 |
|
10 |
def is_cat(x): return x[0].isupper()
|
11 |
-
|
12 |
-
# %% testnbdev.ipynb 57
|
13 |
learn = load_learner("model.pkl")
|
14 |
|
15 |
-
# %% testnbdev.ipynb 65
|
16 |
categories = ('Dog', 'Cat')
|
17 |
-
|
18 |
def classify_image(img):
|
19 |
pred,idx,probs = learn.predict(img)
|
20 |
return dict(zip(categories, map(float,probs))) # need to understand this line.
|
21 |
|
22 |
-
# %% testnbdev.ipynb 67
|
23 |
image = gr.inputs.Image(shape=(192,192))
|
24 |
label = gr.outputs.Label()
|
25 |
examples = ["cat.jpg", "dog.jpg", "grizzlybear.jpg", "box.jpg", "boxes.jpg", "dog_and_cat.jpg", "dog_and_cat2.jpg", "dog_and_cat3.png"]
|
26 |
|
27 |
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
28 |
-
iface.launch()
|
|
|
1 |
# AUTOGENERATED! DO NOT EDIT! File to edit: testnbdev.ipynb.
|
|
|
|
|
|
|
|
|
|
|
2 |
from fastai.vision.all import *
|
3 |
import gradio as gr
|
4 |
|
5 |
def is_cat(x): return x[0].isupper()
|
|
|
|
|
6 |
learn = load_learner("model.pkl")
|
7 |
|
|
|
8 |
categories = ('Dog', 'Cat')
|
|
|
9 |
def classify_image(img):
|
10 |
pred,idx,probs = learn.predict(img)
|
11 |
return dict(zip(categories, map(float,probs))) # need to understand this line.
|
12 |
|
|
|
13 |
image = gr.inputs.Image(shape=(192,192))
|
14 |
label = gr.outputs.Label()
|
15 |
examples = ["cat.jpg", "dog.jpg", "grizzlybear.jpg", "box.jpg", "boxes.jpg", "dog_and_cat.jpg", "dog_and_cat2.jpg", "dog_and_cat3.png"]
|
16 |
|
17 |
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
18 |
+
iface.launch()
|