buio commited on
Commit
fd66de3
·
1 Parent(s): 05842a9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -6
app.py CHANGED
@@ -59,13 +59,10 @@ inputs = [
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 = """
63
- Binary classification of structured data including numerical and categorical features.
64
-
65
- """
66
- article = "Author: <a href=\"https://huggingface.co/buio\">Marco Buiani</a>. Based on the keras example from <a href=\"https://keras.io/examples/structured_data/structured_data_classification_from_scratch/\">François Chollet</a> \n Model Link: https://huggingface.co/buio/structured-data-classification",
67
  examples = [[41, 'female', 'atypical angina', 130, 204, 100, 'normal', 150, 'yes', 1.4, 'psloping', 2, 'reversible'],
68
  [63, 'male', 'typical angina', 145, 233, 150, 'T-T wave abnormality', 150, 'no', 2.3, 'flat', 0, 'fixed']]
69
 
70
  gr.Interface(convert_and_predict, inputs, output, examples= examples, allow_flagging='never',
71
- title=title, description=description, article=article).launch()
 
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']]
66
 
67
  gr.Interface(convert_and_predict, inputs, output, examples= examples, allow_flagging='never',
68
+ title=title, description=description, article=article, live=True).launch()