Spaces:
Sleeping
Sleeping
Nunzio commited on
Commit ·
a5ee0d9
1
Parent(s): e749740
added row
Browse files
app.py
CHANGED
|
@@ -81,8 +81,9 @@ with gr.Blocks(title="Semantic Segmentation Predictors") as demo:
|
|
| 81 |
string = ""
|
| 82 |
for i, (id, name, color) in enumerate(legendHandling()):
|
| 83 |
if i and not i % 3:
|
| 84 |
-
gr.
|
| 85 |
-
|
|
|
|
| 86 |
|
| 87 |
string += f"**{id}**: {name} - Color: {color}"
|
| 88 |
|
|
|
|
| 81 |
string = ""
|
| 82 |
for i, (id, name, color) in enumerate(legendHandling()):
|
| 83 |
if i and not i % 3:
|
| 84 |
+
with gr.Row():
|
| 85 |
+
gr.Markdown(string)
|
| 86 |
+
string = ""
|
| 87 |
|
| 88 |
string += f"**{id}**: {name} - Color: {color}"
|
| 89 |
|