Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -58,9 +58,10 @@ output = gr.Textbox(label='Probability of having a heart disease, as evaluated b
|
|
58 |
examples = []
|
59 |
title = "Heart Disease Classification"
|
60 |
description = "Play with the clinical values or select examples below"
|
61 |
-
examples = [[63, 1, 1, 145, 233, 1, 2, 150, 0, 2.3, 3, 0, 'fixed'],
|
62 |
-
[67, 1, 4, 160, 286, 0, 2, 108, 1, 1.5, 2, 3, 'normal'],
|
63 |
-
[67, 1, 4, 120, 229, 0, 2, 129, 1, 2.6, 2, 2, 'reversible']]
|
64 |
|
65 |
-
gr.Interface(convert_and_predict, inputs, output,
|
|
|
66 |
title=title, description=description).launch()
|
|
|
58 |
examples = []
|
59 |
title = "Heart Disease Classification"
|
60 |
description = "Play with the clinical values or select examples below"
|
61 |
+
#examples = [[63, 1, 1, 145, 233, 1, 2, 150, 0, 2.3, 3, 0, 'fixed'],
|
62 |
+
# [67, 1, 4, 160, 286, 0, 2, 108, 1, 1.5, 2, 3, 'normal'],
|
63 |
+
# [67, 1, 4, 120, 229, 0, 2, 129, 1, 2.6, 2, 2, 'reversible']]
|
64 |
|
65 |
+
gr.Interface(convert_and_predict, inputs, output,
|
66 |
+
allow_flagging=False,
|
67 |
title=title, description=description).launch()
|