Update app.py
Browse files
app.py
CHANGED
|
@@ -293,6 +293,11 @@ def build_demo(embed_mode, concurrency_count=1):
|
|
| 293 |
with gr.Column(scale=8):
|
| 294 |
output_gallery = gr.Gallery(label="Iterative Refinement", object_fit="contain")
|
| 295 |
# output_gallery = gr.Gallery(label="Iterative Refinement")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 296 |
output_coords = gr.Textbox(label="Final Clickable Coordinates")
|
| 297 |
|
| 298 |
gr.HTML(
|
|
|
|
| 293 |
with gr.Column(scale=8):
|
| 294 |
output_gallery = gr.Gallery(label="Iterative Refinement", object_fit="contain")
|
| 295 |
# output_gallery = gr.Gallery(label="Iterative Refinement")
|
| 296 |
+
gr.HTML(
|
| 297 |
+
"""
|
| 298 |
+
<p><strong>Note:</strong> The <span style="color: red;">red point</span> on the output image represents the predicted clickable coordinates.</p>
|
| 299 |
+
"""
|
| 300 |
+
)
|
| 301 |
output_coords = gr.Textbox(label="Final Clickable Coordinates")
|
| 302 |
|
| 303 |
gr.HTML(
|