Update app.py
Browse files
app.py
CHANGED
|
@@ -117,12 +117,12 @@ with gr.Blocks(theme=theme, title="LTN EfficientNet Two-Head Classifier") as dem
|
|
| 117 |
gr.Markdown("### Status legend")
|
| 118 |
legend = gr.Dataframe(
|
| 119 |
value=STATUS_TABLE,
|
| 120 |
-
headers=["
|
| 121 |
-
datatype=["str", "str"
|
| 122 |
interactive=False,
|
| 123 |
wrap=True,
|
| 124 |
row_count=(len(STATUS_TABLE), "fixed"),
|
| 125 |
-
col_count=(
|
| 126 |
)
|
| 127 |
|
| 128 |
with gr.Column(scale=1):
|
|
|
|
| 117 |
gr.Markdown("### Status legend")
|
| 118 |
legend = gr.Dataframe(
|
| 119 |
value=STATUS_TABLE,
|
| 120 |
+
headers=["State", "Description"],
|
| 121 |
+
datatype=["str", "str"],
|
| 122 |
interactive=False,
|
| 123 |
wrap=True,
|
| 124 |
row_count=(len(STATUS_TABLE), "fixed"),
|
| 125 |
+
col_count=(2, "fixed"),
|
| 126 |
)
|
| 127 |
|
| 128 |
with gr.Column(scale=1):
|