add example images
Browse files
app.py
CHANGED
|
@@ -22,5 +22,5 @@ def classify_image(img):
|
|
| 22 |
# label = gr.outputs.Label()
|
| 23 |
examples = ['grizzly.png', 'black.png', 'teddy.png']
|
| 24 |
|
| 25 |
-
intf = gr.Interface(fn=classify_image, inputs="image", outputs="label")
|
| 26 |
intf.launch(inline=False)
|
|
|
|
| 22 |
# label = gr.outputs.Label()
|
| 23 |
examples = ['grizzly.png', 'black.png', 'teddy.png']
|
| 24 |
|
| 25 |
+
intf = gr.Interface(fn=classify_image, inputs="image", outputs="label", examples=examples)
|
| 26 |
intf.launch(inline=False)
|
black.png
ADDED
|
Git LFS Details
|
grizzly.png
ADDED
|
Git LFS Details
|
teddy.png
ADDED
|
Git LFS Details
|