cgeorgiaw HF Staff commited on
Commit
2cb8526
Β·
1 Parent(s): bca065d

trying to visualize

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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['results_files'].to_list()
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