Spaces:
Sleeping
Sleeping
yvesnewman
commited on
Commit
·
b6e52db
1
Parent(s):
8c7e04b
Upload 2 files
Browse files
app.py
CHANGED
@@ -1,7 +1,24 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def
|
4 |
-
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
|
4 |
+
def is_cat(x): return x[0].isupper()
|
|
|
5 |
|
6 |
+
# cell
|
7 |
+
learn = load_learner('model.pkl')
|
8 |
+
|
9 |
+
# cell
|
10 |
+
categories = ['Cat', 'Dog']
|
11 |
+
|
12 |
+
def classify_image(img):
|
13 |
+
pred,idx,probs = learn.predict(img)
|
14 |
+
return dict(zip(categories, map(float, probs)))
|
15 |
+
|
16 |
+
# cell
|
17 |
+
image = gr.inputs.Image(shape=(192, 192))
|
18 |
+
label = gr.outputs.Label()
|
19 |
+
examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
|
20 |
+
|
21 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
22 |
+
intf.launch(inline=False)
|
23 |
+
|
24 |
+
#cell
|
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:64b92a9d22958a943451596c7a328df06c7a50cb3f5710b758fa722a0b5408ac
|
3 |
+
size 47061201
|