Init
Browse files- app.py +19 -4
- black.webp +0 -0
- grizzly.jpg +0 -0
- teddy.webp +0 -0
app.py
CHANGED
@@ -1,7 +1,22 @@
|
|
|
|
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_teddy(x): return x[0].isupper()
|
|
|
5 |
|
6 |
+
# Cell
|
7 |
+
learn = load_learner('model.pk1')
|
8 |
+
|
9 |
+
# Cell
|
10 |
+
categories = ('Teddy', 'Grizzly')
|
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 = ['teddy.webp', 'grizzly.jpg', 'black.webp']
|
20 |
+
|
21 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
22 |
+
intf.launch(inline=False)
|
black.webp
ADDED
grizzly.jpg
ADDED
teddy.webp
ADDED