Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -28,9 +28,9 @@ outputs = gr.outputs.Image(type="pil", label="Output Image")
|
|
| 28 |
title = "Deepdoctection"
|
| 29 |
description = ""
|
| 30 |
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
|
| 36 |
gr.Interface(analyze_image, inputs, outputs, title=title, description=description, examples=examples).launch()
|
|
|
|
| 28 |
title = "Deepdoctection"
|
| 29 |
description = ""
|
| 30 |
|
| 31 |
+
examples = [
|
| 32 |
+
['sample_1.jpg'],
|
| 33 |
+
['sample_2.png']
|
| 34 |
+
]
|
| 35 |
|
| 36 |
gr.Interface(analyze_image, inputs, outputs, title=title, description=description, examples=examples).launch()
|