Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -58,9 +58,11 @@ inputs = [
|
|
58 |
# the app outputs text
|
59 |
output = gr.Textbox(label='Probability of having a heart disease, as evaluated by our model:')
|
60 |
# it's good practice to pass examples, description and a title to guide users
|
61 |
-
title = "Structured Data Classification
|
62 |
-
description = "Binary classification of structured data including numerical and categorical features for Heart Disease"
|
63 |
-
|
|
|
|
|
64 |
examples = [[41, 'female', 'atypical angina', 130, 204, 100, 'normal', 150, 'yes', 1.4, 'psloping', 2, 'reversible'],
|
65 |
[63, 'male', 'typical angina', 145, 233, 150, 'T-T wave abnormality', 150, 'no', 2.3, 'flat', 0, 'fixed']]
|
66 |
|
|
|
58 |
# the app outputs text
|
59 |
output = gr.Textbox(label='Probability of having a heart disease, as evaluated by our model:')
|
60 |
# it's good practice to pass examples, description and a title to guide users
|
61 |
+
title = "Structured Data Classification 🧮"
|
62 |
+
description = "Binary classification of structured data including numerical and categorical features for Heart Disease prediction."
|
63 |
+
|
64 |
+
article = "Author: <a href=\"https://huggingface.co/buio\">Marco Buiani</a>. Based on the <a href=\"https://keras.io/examples/structured_data/structured_data_classification_from_scratch/\">keras example</a> by <a href=\"https://twitter.com/fchollet\">François Chollet</a> <a href=\"https://huggingface.co/buio/structured-data-classification\">HuggingFace Model</a> "
|
65 |
+
|
66 |
examples = [[41, 'female', 'atypical angina', 130, 204, 100, 'normal', 150, 'yes', 1.4, 'psloping', 2, 'reversible'],
|
67 |
[63, 'male', 'typical angina', 145, 233, 150, 'T-T wave abnormality', 150, 'no', 2.3, 'flat', 0, 'fixed']]
|
68 |
|