forcing reload of dataset for visualization
Browse files
app.py
CHANGED
@@ -106,7 +106,7 @@ def gradio_interface() -> gr.Blocks:
|
|
106 |
# plot_output = gr.Plot()
|
107 |
|
108 |
with gr.TabItem("π Visualize", elem_id="boundary-benchmark-tab-table"):
|
109 |
-
ds = load_dataset(results_repo, split='train')
|
110 |
full_df = pd.DataFrame(ds)
|
111 |
filenames = full_df['result_filename'].to_list()
|
112 |
with gr.Row():
|
|
|
106 |
# plot_output = gr.Plot()
|
107 |
|
108 |
with gr.TabItem("π Visualize", elem_id="boundary-benchmark-tab-table"):
|
109 |
+
ds = load_dataset(results_repo, split='train', download_mode="force_redownload")
|
110 |
full_df = pd.DataFrame(ds)
|
111 |
filenames = full_df['result_filename'].to_list()
|
112 |
with gr.Row():
|