Commit
·
c278d15
1
Parent(s):
8500a61
Upload app.py
Browse files
app.py
CHANGED
|
@@ -14,7 +14,7 @@ def classify_image(image):
|
|
| 14 |
|
| 15 |
image = gr.inputs.Image(shape=(192,192))
|
| 16 |
label = gr.outputs.Label()
|
| 17 |
-
examples=['
|
| 18 |
|
| 19 |
intf =gr.Interface(fn=classify_image,inputs=image,outputs=label,examples=examples)
|
| 20 |
intf.launch(inline=False,share=True)
|
|
|
|
| 14 |
|
| 15 |
image = gr.inputs.Image(shape=(192,192))
|
| 16 |
label = gr.outputs.Label()
|
| 17 |
+
examples=['example1.jpg','example2.jpg','example3.jpg']
|
| 18 |
|
| 19 |
intf =gr.Interface(fn=classify_image,inputs=image,outputs=label,examples=examples)
|
| 20 |
intf.launch(inline=False,share=True)
|