Update app.py
Browse files
app.py
CHANGED
@@ -158,7 +158,7 @@ with gr.Blocks() as demo:
|
|
158 |
|
159 |
# Button to trigger the file processing
|
160 |
process_btn = gr.Button("Process File")
|
161 |
-
process_btn.click(
|
162 |
|
163 |
# Launch the Gradio app with live=True
|
164 |
demo.launch(show_error=True,debug=True)
|
|
|
158 |
|
159 |
# Button to trigger the file processing
|
160 |
process_btn = gr.Button("Process File")
|
161 |
+
process_btn.click(get_sim_list, inputs=[file_uploader, Ws, Wl, Wj, model_dropdown,threshold,number_results], outputs=df_output)
|
162 |
|
163 |
# Launch the Gradio app with live=True
|
164 |
demo.launch(show_error=True,debug=True)
|