Spaces:
Runtime error
Runtime error
Laks Srini
commited on
Commit
·
4a31178
1
Parent(s):
6057c4d
Cat or Dog with model
Browse files- app.py +27 -4
- cat.jpeg +0 -0
- dog.jpeg +0 -0
- dunno.jpeg +0 -0
- model.pkl +3 -0
app.py
CHANGED
@@ -1,7 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
-
iface.launch()
|
|
|
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_img']
|
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 3
|
13 |
+
learn = load_learner("model.pkl")
|
14 |
+
|
15 |
+
# %% app.ipynb 5
|
16 |
+
categories = ("Dog", "Cat")
|
17 |
+
|
18 |
+
def classify_img(img):
|
19 |
+
pred,idx,probs = learn.predict(img)
|
20 |
+
return dict(zip(categories, map(float, probs)))
|
21 |
+
|
22 |
+
|
23 |
+
# %% app.ipynb 7
|
24 |
+
image = gr.inputs.Image(shape=(192, 192))
|
25 |
+
label = gr.outputs.Label()
|
26 |
+
examples = ["dog.jpeg", "cat.jpeg", "dunno.jpeg"]
|
27 |
+
|
28 |
+
intf = gr.Interface(fn=classify_img, inputs=image, outputs=label, examples=examples)
|
29 |
+
intf.launch(inline=False)
|
30 |
|
|
|
|
cat.jpeg
ADDED
![]() |
dog.jpeg
ADDED
![]() |
dunno.jpeg
ADDED
![]() |
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f6cc48bdecd4fed6f3dbede5e24ec0e8a62cef54d9606931724ffd5128799d09
|
3 |
+
size 47060011
|