buio commited on
Commit
61eb7c7
·
1 Parent(s): bd30554

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -58,8 +58,8 @@ 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 = "Heart Disease Classification 🩺❤️"
62
- description = "Binary classification of structured data including numerical and categorical features."
63
  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> Model Link: https://huggingface.co/buio/structured-data-classification"
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']]
 
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
  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> Model Link: https://huggingface.co/buio/structured-data-classification"
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']]