Clarice Groeneveld
commited on
Commit
•
0749a11
1
Parent(s):
fe7bfcb
add title
Browse files
app.py
CHANGED
@@ -12,5 +12,6 @@ image = gr.inputs.Image(shape=(192,192))
|
|
12 |
label = gr.components.Label()
|
13 |
examples = ['berry.jpg', 'chocolate.jpg', 'mint_choc.jpg', 'vanilla_soft.jpg']
|
14 |
|
15 |
-
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples
|
|
|
16 |
intf.launch(inline=False)
|
|
|
12 |
label = gr.components.Label()
|
13 |
examples = ['berry.jpg', 'chocolate.jpg', 'mint_choc.jpg', 'vanilla_soft.jpg']
|
14 |
|
15 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples,
|
16 |
+
title = 'Ice cream flavor classifier')
|
17 |
intf.launch(inline=False)
|