Update app.py
Browse files
app.py
CHANGED
|
@@ -22,5 +22,5 @@ image = gr.inputs.Image(shape=(192, 192))
|
|
| 22 |
label = gr.outputs.Label()
|
| 23 |
examples = ['no makeup.jpg', 'no makeup2.jpg', 'makeup.jpg']
|
| 24 |
|
| 25 |
-
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
|
| 26 |
intf.launch(inline=False)
|
|
|
|
| 22 |
label = gr.outputs.Label()
|
| 23 |
examples = ['no makeup.jpg', 'no makeup2.jpg', 'makeup.jpg']
|
| 24 |
|
| 25 |
+
intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples, title="Makeup? OR No Makeup?")
|
| 26 |
intf.launch(inline=False)
|