style: add title
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']
|
26 |
|
27 |
-
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
28 |
intf.launch(inline=False)
|
|
|
24 |
label = gr.outputs.Label()
|
25 |
examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
|
26 |
|
27 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title='Dog vs cat?')
|
28 |
intf.launch(inline=False)
|