Spaces:
Sleeping
Sleeping
DebarthaChakraborty
commited on
Commit
•
0250f59
1
Parent(s):
851048f
big commit
Browse files
app.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|
app.py
CHANGED
@@ -1,7 +1,21 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
def
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
|
6 |
-
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
-
iface.launch()
|
|
|
1 |
+
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
|
4 |
+
def is_cat(x): return x[0].isupper()
|
5 |
+
|
6 |
+
|
7 |
+
learn = load_learner('model.pkl')
|
8 |
+
|
9 |
+
categories = ('Dog','Cat')
|
10 |
+
|
11 |
+
def classify_image(img):
|
12 |
+
pred, idx, probs = learn.predict(img)
|
13 |
+
return dict(zip(categories, map(float, probs)))
|
14 |
+
|
15 |
+
image = gr.inputs.Image(shape=(192,192))
|
16 |
+
label = gr.outputs.Label()
|
17 |
+
examples = ['dog.jpg', 'cat.jpg', 'horse.jpg']
|
18 |
+
|
19 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
20 |
+
intf.launch(inline=False)
|
21 |
|
|
|
|
cat.jpg
ADDED
dog.jpg
ADDED
horse.jpg
ADDED
model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a2334b535eac51eec39cb753a65cd5949563c84ac66d24cd0c9c0a85b57a5b72
|
3 |
+
size 47061419
|