Spaces:
Runtime error
Runtime error
Commit ·
07a88b5
1
Parent(s): cd643ec
Update app.py
Browse files
app.py
CHANGED
|
@@ -37,8 +37,10 @@ def object_classify(img):
|
|
| 37 |
index += 1
|
| 38 |
return output_image
|
| 39 |
|
| 40 |
-
|
|
|
|
|
|
|
| 41 |
interface=gr.Interface(object_classify,
|
| 42 |
gr.inputs.Image(type = 'pil'),gr.outputs.Image(),
|
| 43 |
-
examples = [],description=
|
| 44 |
interface.launch()
|
|
|
|
| 37 |
index += 1
|
| 38 |
return output_image
|
| 39 |
|
| 40 |
+
TITLE = 'Object Detection for Effective Self-Checkout in Grocery Shopping [Work In Progress]'
|
| 41 |
+
DESCRIPTION = 'A deep learning application to reimagine self-checkout stores.'
|
| 42 |
+
EXAMPLES = ['ex1.jpg']
|
| 43 |
interface=gr.Interface(object_classify,
|
| 44 |
gr.inputs.Image(type = 'pil'),gr.outputs.Image(),
|
| 45 |
+
examples = [],title = TITLE, description=DESCRIPTION, allow_flagging="never")
|
| 46 |
interface.launch()
|