Update app.py
Browse files
app.py
CHANGED
@@ -63,7 +63,14 @@ def analyze_image(img):
|
|
63 |
title = "Document Layout Analysis"
|
64 |
description = "Demo"
|
65 |
article = ""
|
66 |
-
examples =[['publaynet_example.jpeg']]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
css = ".output-image, .input-image, .image-preview {height: 600px !important}"
|
68 |
|
69 |
iface = gr.Interface(fn=analyze_image,
|
|
|
63 |
title = "Document Layout Analysis"
|
64 |
description = "Demo"
|
65 |
article = ""
|
66 |
+
# examples =[['publaynet_example.jpeg']]
|
67 |
+
examples = [
|
68 |
+
['publaynet_example.jpeg'],
|
69 |
+
['PMC1064093_00000.jpg'],
|
70 |
+
['PMC1064139_00005.jpg'],
|
71 |
+
['PMC1079928_00003.jpg'],
|
72 |
+
['PMC1097753_00002.jpg']
|
73 |
+
]
|
74 |
css = ".output-image, .input-image, .image-preview {height: 600px !important}"
|
75 |
|
76 |
iface = gr.Interface(fn=analyze_image,
|