trying to visualize
Browse files
app.py
CHANGED
@@ -105,7 +105,7 @@ def gradio_interface() -> gr.Blocks:
|
|
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['
|
109 |
dropdown = gr.Dropdown(choices=filenames, label="Choose a file", value=filenames[0])
|
110 |
plot = gr.Plot()
|
111 |
|
|
|
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['result_filename'].to_list()
|
109 |
dropdown = gr.Dropdown(choices=filenames, label="Choose a file", value=filenames[0])
|
110 |
plot = gr.Plot()
|
111 |
|