EmbraceLife
commited on
Commit
•
92b2ce6
1
Parent(s):
911a563
auto app.py
Browse files- .ipynb_checkpoints/gradiomodel-checkpoint.ipynb +0 -0
- app.py +10 -2
- gradiomodel.ipynb +0 -0
.ipynb_checkpoints/gradiomodel-checkpoint.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|
app.py
CHANGED
@@ -1,19 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
from fastai.vision.all import *
|
2 |
import gradio as gr
|
3 |
|
4 |
def is_cat(x): return x[0].isupper()
|
5 |
|
6 |
-
|
|
|
7 |
|
|
|
8 |
categories = ('Dog', 'Cat')
|
9 |
|
10 |
def classify_image(img):
|
11 |
pred,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 |
-
examples = ['../
|
17 |
|
18 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
19 |
intf.launch(inline=False, share=True)
|
|
|
1 |
+
# AUTOGENERATED! DO NOT EDIT! File to edit: . (unless otherwise specified).
|
2 |
+
|
3 |
+
__all__ = ['is_cat', 'learn', 'classify_image', 'categories', 'image', 'label', 'examples', 'intf']
|
4 |
+
|
5 |
+
# Cell
|
6 |
from fastai.vision.all import *
|
7 |
import gradio as gr
|
8 |
|
9 |
def is_cat(x): return x[0].isupper()
|
10 |
|
11 |
+
# Cell
|
12 |
+
learn = load_learner('model.pkl')
|
13 |
|
14 |
+
# Cell
|
15 |
categories = ('Dog', 'Cat')
|
16 |
|
17 |
def classify_image(img):
|
18 |
pred,idx,probs = learn.predict(img)
|
19 |
return dict(zip(categories, map(float,probs)))
|
20 |
|
21 |
+
# Cell
|
22 |
image = gr.inputs.Image(shape=(192, 192))
|
23 |
label = gr.outputs.Label()
|
24 |
+
examples = ['../input/simplesamples/.jpeg']
|
25 |
|
26 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
27 |
intf.launch(inline=False, share=True)
|
gradiomodel.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|