Spaces:
Sleeping
Sleeping
magilogi
commited on
Commit
·
6ccb59a
1
Parent(s):
32cddab
layout
Browse files
app.py
CHANGED
|
@@ -110,15 +110,6 @@ with gr.Blocks(css="custom.css") as demo:
|
|
| 110 |
elem_id="bar2"
|
| 111 |
)
|
| 112 |
|
| 113 |
-
with gr.Row():
|
| 114 |
-
gr.Dataframe(
|
| 115 |
-
value=explanation_df,
|
| 116 |
-
headers="keys",
|
| 117 |
-
datatype=["str", "str"],
|
| 118 |
-
interactive=False,
|
| 119 |
-
label="Explanation of Scores"
|
| 120 |
-
)
|
| 121 |
-
|
| 122 |
with gr.Row():
|
| 123 |
gr.Markdown(""" """)
|
| 124 |
|
|
@@ -226,6 +217,16 @@ with gr.Blocks(css="custom.css") as demo:
|
|
| 226 |
</div>""",
|
| 227 |
elem_classes="markdown-text"
|
| 228 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 229 |
|
| 230 |
|
| 231 |
|
|
|
|
| 110 |
elem_id="bar2"
|
| 111 |
)
|
| 112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 113 |
with gr.Row():
|
| 114 |
gr.Markdown(""" """)
|
| 115 |
|
|
|
|
| 217 |
</div>""",
|
| 218 |
elem_classes="markdown-text"
|
| 219 |
)
|
| 220 |
+
|
| 221 |
+
with gr.Row():
|
| 222 |
+
gr.Dataframe(
|
| 223 |
+
value=explanation_df,
|
| 224 |
+
headers="keys",
|
| 225 |
+
datatype=["str", "str"],
|
| 226 |
+
interactive=False,
|
| 227 |
+
label="Explanation of Scores"
|
| 228 |
+
)
|
| 229 |
+
|
| 230 |
|
| 231 |
|
| 232 |
|