Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -97,6 +97,6 @@ with app:
|
|
97 |
btn3 = gr.Button("Predict for Model 3")
|
98 |
with gr.Row():
|
99 |
out_3 = gr.Textbox(label="Prediction for Model 3")
|
100 |
-
btn3.click(fn=get_prediction(
|
101 |
|
102 |
app.launch()
|
|
|
97 |
btn3 = gr.Button("Predict for Model 3")
|
98 |
with gr.Row():
|
99 |
out_3 = gr.Textbox(label="Prediction for Model 3")
|
100 |
+
btn3.click(fn=get_prediction(model_id_3), inputs=inp_1, outputs=out_3)
|
101 |
|
102 |
app.launch()
|