fix: fix typo
Browse files
app.py
CHANGED
|
@@ -24,5 +24,5 @@ image = gr.inputs.Image(shape=(192,192))
|
|
| 24 |
label = gr.outputs.Label()
|
| 25 |
examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg', 'dunno2.jpg']
|
| 26 |
|
| 27 |
-
intf = gr.Interface(allow_flagging='never' fn=classify_image, inputs=image, outputs=label, examples=examples, live=True, thumbnail='https://static.niche.sch.no/docs/assets/img/niche-and-services.png' title='Dog vs cat?')
|
| 28 |
intf.launch(inline=False)
|
|
|
|
| 24 |
label = gr.outputs.Label()
|
| 25 |
examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg', 'dunno2.jpg']
|
| 26 |
|
| 27 |
+
intf = gr.Interface(allow_flagging='never', fn=classify_image, inputs=image, outputs=label, examples=examples, live=True, thumbnail='https://static.niche.sch.no/docs/assets/img/niche-and-services.png', title='Dog vs cat?')
|
| 28 |
intf.launch(inline=False)
|