Update app.py
Browse files
app.py
CHANGED
|
@@ -248,10 +248,13 @@ def main():
|
|
| 248 |
</span></h3>
|
| 249 |
|
| 250 |
<div style="text-align: center;">
|
| 251 |
-
<div style="display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size:
|
| 252 |
<a href="https://arxiv.org/submit/5810210" target="_blank">[Paper]</a>
|
| 253 |
<a href="https://github.com/ZiyuGuo99/SAM2Point" target="_blank">[Code]</a>
|
| 254 |
-
</div
|
|
|
|
|
|
|
|
|
|
| 255 |
"""
|
| 256 |
|
| 257 |
with gr.Blocks(
|
|
@@ -278,7 +281,6 @@ def main():
|
|
| 278 |
theme=gr.themes.Soft()
|
| 279 |
) as app:
|
| 280 |
gr.HTML(title)
|
| 281 |
-
gr.Markdown("Select an example to start segmentation using SAM2Point. Custom prompts for segmentation will be supported soon.")
|
| 282 |
with gr.Row():
|
| 283 |
with gr.Column(elem_id="col_container"):
|
| 284 |
sample_dropdown = gr.Dropdown(label="Select 3D Data Type", choices=samples, type="value")
|
|
|
|
| 248 |
</span></h3>
|
| 249 |
|
| 250 |
<div style="text-align: center;">
|
| 251 |
+
<div style="display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 1rem; flex-wrap: wrap;">
|
| 252 |
<a href="https://arxiv.org/submit/5810210" target="_blank">[Paper]</a>
|
| 253 |
<a href="https://github.com/ZiyuGuo99/SAM2Point" target="_blank">[Code]</a>
|
| 254 |
+
</div>
|
| 255 |
+
</div>
|
| 256 |
+
<p>Select an example to start segmentation using <span style="font-variant: small-caps;">SAM2Point</span>. Custom prompts for segmentation will be supported soon.
|
| 257 |
+
</p>
|
| 258 |
"""
|
| 259 |
|
| 260 |
with gr.Blocks(
|
|
|
|
| 281 |
theme=gr.themes.Soft()
|
| 282 |
) as app:
|
| 283 |
gr.HTML(title)
|
|
|
|
| 284 |
with gr.Row():
|
| 285 |
with gr.Column(elem_id="col_container"):
|
| 286 |
sample_dropdown = gr.Dropdown(label="Select 3D Data Type", choices=samples, type="value")
|