Spaces:
Sleeping
Sleeping
Commit
·
0014c28
1
Parent(s):
c495efc
updated to latest gradio version
Browse files
app.py
CHANGED
@@ -15,8 +15,8 @@ def classify_image(img):
|
|
15 |
return dict(zip(categories, map(float, probs)))
|
16 |
|
17 |
|
18 |
-
image = gr.
|
19 |
-
label = gr.
|
20 |
examples = ['black_bear.jpeg','grizzly_bear.jpeg', 'teddy_bear.jpeg']
|
21 |
|
22 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title="Bear Classifier")
|
|
|
15 |
return dict(zip(categories, map(float, probs)))
|
16 |
|
17 |
|
18 |
+
image = gr.Image(shape=(192,192))
|
19 |
+
label = gr.Label()
|
20 |
examples = ['black_bear.jpeg','grizzly_bear.jpeg', 'teddy_bear.jpeg']
|
21 |
|
22 |
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title="Bear Classifier")
|