Update app.py
Browse files
app.py
CHANGED
@@ -129,9 +129,9 @@ with gr.Blocks() as demo:
|
|
129 |
|
130 |
Prediccion = gr.Number()
|
131 |
|
132 |
-
inference_button.click(fn=inference, inputs=[url_input, image_input, min_score, model_name], outputs=output_image)
|
133 |
|
134 |
-
|
135 |
|
136 |
|
137 |
gr.Markdown(footer)
|
|
|
129 |
|
130 |
Prediccion = gr.Number()
|
131 |
|
132 |
+
#inference_button.click(fn=inference, inputs=[url_input, image_input, min_score, model_name], outputs=output_image)
|
133 |
|
134 |
+
inference_button.click(fn=inferenceScore, inputs=[url_input, image_input, min_score, model_name], outputs=Prediccion)
|
135 |
|
136 |
|
137 |
gr.Markdown(footer)
|