trying to visualize
Browse files
app.py
CHANGED
@@ -102,7 +102,7 @@ def gradio_interface() -> gr.Blocks:
|
|
102 |
# dropdown = gr.Dropdown(choices=filenames, label="Choose a file")
|
103 |
# plot_output = gr.Plot()
|
104 |
|
105 |
-
|
106 |
ds = load_dataset(results_repo, split='train')
|
107 |
full_df = pd.DataFrame(ds)
|
108 |
filenames = full_df['results_files'].to_list()
|
@@ -130,7 +130,7 @@ def gradio_interface() -> gr.Blocks:
|
|
130 |
fn=update_plot,
|
131 |
inputs=[dropdown],
|
132 |
outputs=[plot]
|
133 |
-
)
|
134 |
|
135 |
with gr.TabItem("βοΈ Submit", elem_id="boundary-benchmark-tab-table"):
|
136 |
gr.Markdown(
|
|
|
102 |
# dropdown = gr.Dropdown(choices=filenames, label="Choose a file")
|
103 |
# plot_output = gr.Plot()
|
104 |
|
105 |
+
with gr.TabItem("π Visualize", elem_id="boundary-benchmark-tab-table"):
|
106 |
ds = load_dataset(results_repo, split='train')
|
107 |
full_df = pd.DataFrame(ds)
|
108 |
filenames = full_df['results_files'].to_list()
|
|
|
130 |
fn=update_plot,
|
131 |
inputs=[dropdown],
|
132 |
outputs=[plot]
|
133 |
+
)
|
134 |
|
135 |
with gr.TabItem("βοΈ Submit", elem_id="boundary-benchmark-tab-table"):
|
136 |
gr.Markdown(
|