Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -43,6 +43,5 @@ inputs = [gender, age, hypertension, heart_disease, ever_married,
|
|
43 |
outputs = gr.outputs.Label(label='Result')
|
44 |
|
45 |
# Launch the interface
|
46 |
-
demo = gr.Interface(fn=predict, inputs=inputs, outputs=outputs
|
47 |
-
description="Fill in the details and click submit to check the probability of stroke")
|
48 |
demo.launch()
|
|
|
43 |
outputs = gr.outputs.Label(label='Result')
|
44 |
|
45 |
# Launch the interface
|
46 |
+
demo = gr.Interface(fn=predict, inputs=inputs, outputs=outputs)
|
|
|
47 |
demo.launch()
|