Update app.py
Browse files
app.py
CHANGED
@@ -101,7 +101,8 @@ def show_results_tab(df, model_info, results):
|
|
101 |
with gr.Row():
|
102 |
model_name = gr.Textbox(
|
103 |
value='Input the Model Name (fuzzy)',
|
104 |
-
label='Search Model Name'
|
|
|
105 |
)
|
106 |
|
107 |
|
@@ -116,8 +117,7 @@ def show_results_tab(df, model_info, results):
|
|
116 |
search_box.input(
|
117 |
fuzzy_filter_df,
|
118 |
inputs=search_box,
|
119 |
-
outputs=table
|
120 |
-
debounce=500
|
121 |
)
|
122 |
|
123 |
|
|
|
101 |
with gr.Row():
|
102 |
model_name = gr.Textbox(
|
103 |
value='Input the Model Name (fuzzy)',
|
104 |
+
label='Search Model Name',
|
105 |
+
interactive=True
|
106 |
)
|
107 |
|
108 |
|
|
|
117 |
search_box.input(
|
118 |
fuzzy_filter_df,
|
119 |
inputs=search_box,
|
120 |
+
outputs=table
|
|
|
121 |
)
|
122 |
|
123 |
|