Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,5 +22,5 @@ input4 = gr.inputs.Slider(minimum=0, maximum=100, label="Input 4")
|
|
| 22 |
|
| 23 |
output1 = gr.outputs.Textbox(label="Output")
|
| 24 |
output2 = gr.outputs.Textbox(label="Output")
|
| 25 |
-
interface = gr.Interface(fn=predict, inputs=[input1, input2], outputs=[output1, output2])
|
| 26 |
-
interface.launch(
|
|
|
|
| 22 |
|
| 23 |
output1 = gr.outputs.Textbox(label="Output")
|
| 24 |
output2 = gr.outputs.Textbox(label="Output")
|
| 25 |
+
interface = gr.Interface(fn=predict, inputs=[input1, input2, input3, input4], outputs=[output1, output2])
|
| 26 |
+
interface.launch(share=True)
|