Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -224,6 +224,21 @@ def sahi_app():
|
|
224 |
def metaseg_app():
|
225 |
app = gr.Blocks()
|
226 |
with app:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
with gr.Row():
|
228 |
with gr.Column():
|
229 |
with gr.Tab("Image"):
|
|
|
224 |
def metaseg_app():
|
225 |
app = gr.Blocks()
|
226 |
with app:
|
227 |
+
gr.HTML(
|
228 |
+
"""
|
229 |
+
<h1 style='text-align: center'>
|
230 |
+
MetaSeg: Segment Anything Video
|
231 |
+
</h1>
|
232 |
+
"""
|
233 |
+
)
|
234 |
+
gr.HTML(
|
235 |
+
"""
|
236 |
+
<h3 style='text-align: center'>
|
237 |
+
Follow me for more!
|
238 |
+
<a href='https://twitter.com/kadirnar_ai' target='_blank'>Twitter</a> | <a href='https://github.com/kadirnar' target='_blank'>Github</a> | <a href='https://www.linkedin.com/in/kadir-nar/' target='_blank'>Linkedin</a>
|
239 |
+
</h3>
|
240 |
+
"""
|
241 |
+
)
|
242 |
with gr.Row():
|
243 |
with gr.Column():
|
244 |
with gr.Tab("Image"):
|