Spaces:
Sleeping
Sleeping
Clean up output col
Browse files- gui/app.py +6 -8
gui/app.py
CHANGED
|
@@ -207,14 +207,12 @@ def main():
|
|
| 207 |
blocks = {**blocks, **_settings_layout()}
|
| 208 |
|
| 209 |
with gr.Column():
|
| 210 |
-
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
| 215 |
-
|
| 216 |
-
with gr.Row():
|
| 217 |
-
blocks["run"] = gr.Button()
|
| 218 |
|
| 219 |
blocks["run"].click(
|
| 220 |
greet,
|
|
|
|
| 207 |
blocks = {**blocks, **_settings_layout()}
|
| 208 |
|
| 209 |
with gr.Column():
|
| 210 |
+
blocks["df"] = gr.Dataframe(
|
| 211 |
+
headers=["Equation", "Loss", "Complexity"],
|
| 212 |
+
datatype=["str", "number", "number"],
|
| 213 |
+
)
|
| 214 |
+
blocks["run"] = gr.Button()
|
| 215 |
+
blocks["error_log"] = gr.Textbox(label="Error Log")
|
|
|
|
|
|
|
| 216 |
|
| 217 |
blocks["run"].click(
|
| 218 |
greet,
|