Spaces:
Sleeping
Sleeping
kerekovskik
commited on
Commit
·
96cccb9
1
Parent(s):
260616e
Add model for cats and dogs and new app code
Browse files- .gitignore +1 -0
- app.py +26 -5
- cat.jpg +0 -0
- dog.jpg +0 -0
- lizard.jpg +0 -0
- model.pkl +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
.venv/
|
app.py
CHANGED
@@ -1,7 +1,28 @@
|
|
1 |
-
|
2 |
|
3 |
-
|
4 |
-
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# AUTOGENERATED! DO NOT EDIT! File to edit: ../app.ipynb.
|
2 |
|
3 |
+
# %% auto 0
|
4 |
+
__all__ = ['learn', 'categories', 'image', 'label', 'examples', 'intf', 'is_cat', 'classify_image']
|
5 |
|
6 |
+
# %% ../app.ipynb 1
|
7 |
+
from fastai.vision.all import *
|
8 |
+
import gradio as gr
|
9 |
+
|
10 |
+
def is_cat(x): return x[0].isupper()
|
11 |
+
|
12 |
+
# %% ../app.ipynb 5
|
13 |
+
learn = load_learner('model.pkl')
|
14 |
+
|
15 |
+
# %% ../app.ipynb 9
|
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)))
|
21 |
+
|
22 |
+
# %% ../app.ipynb 11
|
23 |
+
image = gr.inputs.Image(shape=(192,192))
|
24 |
+
label = gr.outputs.Label()
|
25 |
+
examples = ['dog.jpg','cat.jpg','lizard.jpg']
|
26 |
+
|
27 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
28 |
+
intf.launch(inline=False)
|
cat.jpg
ADDED
dog.jpg
ADDED
lizard.jpg
ADDED
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1694cba5d901be784e2b644cbcaa6b1998960ed64702ecc0766a4a69a332bdbd
|
3 |
+
size 47110865
|