Nunzio commited on
Commit
a5ee0d9
·
1 Parent(s): e749740

added row

Browse files
Files changed (1) hide show
  1. app.py +3 -2
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.Markdown(string)
85
- string = ""
 
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