Kenno104
commited on
Commit
·
c3a8026
1
Parent(s):
991eff6
bug fix
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ def classify_image(img):
|
|
| 13 |
|
| 14 |
image = gr.inputs.Image(shape = (192,192))
|
| 15 |
label = gr.outputs.Label()
|
| 16 |
-
examples = [siamese.jpg]
|
| 17 |
|
| 18 |
intf = gr.Interface(fn = classify_image, inputs = image, outputs = label, examples = examples)
|
| 19 |
intf.launch(inline = False)
|
|
|
|
| 13 |
|
| 14 |
image = gr.inputs.Image(shape = (192,192))
|
| 15 |
label = gr.outputs.Label()
|
| 16 |
+
examples = ['siamese.jpg']
|
| 17 |
|
| 18 |
intf = gr.Interface(fn = classify_image, inputs = image, outputs = label, examples = examples)
|
| 19 |
intf.launch(inline = False)
|