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