fastai
Browse files
app.py
CHANGED
@@ -1,7 +1,20 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
-
def greet(name):
|
4 |
-
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
form fastai.vision.all import *
|
3 |
+
def is_cat(): return x[0].is_upper()
|
4 |
|
|
|
|
|
5 |
|
6 |
+
learn = load_learner('model.pkl')
|
7 |
+
|
8 |
+
categories = ("Dog", "Cat")
|
9 |
+
|
10 |
+
def classify_image(img):
|
11 |
+
prob, idx, probs = learn.predict(img)
|
12 |
+
return dict(zip(categories, map(float, probs)))
|
13 |
+
|
14 |
+
image = gr.inputs.Image(shape = (192, 192))
|
15 |
+
label = gr.outputs.Label()
|
16 |
+
|
17 |
+
examples = []
|
18 |
+
|
19 |
+
iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples = examples)
|
20 |
+
iface.launch(inline=False)
|
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2c0baca27e11ee36c574a5071493c433c09400ae17986a2490cc895335b839cc
|
3 |
+
size 46971114
|