Spaces:
Sleeping
Sleeping
Stephen137
commited on
Commit
β’
b9390b5
1
Parent(s):
24ebe49
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import gradio as gr
|
|
3 |
|
4 |
learn = load_learner("export.pkl")
|
5 |
|
6 |
-
categories = (
|
7 |
|
8 |
def classify_image(img):
|
9 |
pred,idx,probs = learn.predict(img)
|
@@ -11,7 +11,7 @@ return dict(zip(categories, map(float,probs)))
|
|
11 |
|
12 |
image = gr.inputs.Image(shape=(192,192))
|
13 |
label = gr.outputs.Label()
|
14 |
-
examples = [
|
15 |
|
16 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
17 |
intf.launch(inline=False)
|
|
|
3 |
|
4 |
learn = load_learner("export.pkl")
|
5 |
|
6 |
+
categories = ("grizzly", "black", "teddy")
|
7 |
|
8 |
def classify_image(img):
|
9 |
pred,idx,probs = learn.predict(img)
|
|
|
11 |
|
12 |
image = gr.inputs.Image(shape=(192,192))
|
13 |
label = gr.outputs.Label()
|
14 |
+
examples = ["grizzly.jpg", "black.jpg", "teddy.jpg"]
|
15 |
|
16 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
17 |
intf.launch(inline=False)
|