adeledududu commited on
Commit
437e8c7
·
1 Parent(s): 64a2892

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -53,6 +53,9 @@ with gr.Blocks(title=title) as demo:
53
  age = gr.Number(label="What's your age?")
54
  sex = gr.Dropdown(label="What's your sex?", choices = ["Female", "Male"],type="index")
55
  cp = gr.inputs.Dropdown(["typical", "atypical", "other", "asymptomatic"], label="Chest pain type")
 
 
 
56
 
57
  with gr.Column():
58
  trtbps = gr.inputs.Slider(50, 180, default=80, label="Resting blood pressure")
@@ -60,9 +63,6 @@ with gr.Blocks(title=title) as demo:
60
  fbs = gr.Dropdown(label="Is your fasting blood sugar > 120 mg/dl?", choices = ["yes","no"], type = "index")
61
  restecg = gr.Dropdown(label="What is your resting ECG result?", choices = ["normal","ST-T wave abnormality"], type = "index", value = "normal", info = "resting ESG result")
62
  thall = gr.Dropdown(label="What is your Thalassemia condition?", choices = ["NULL","Fixed Defect", "Normal Blood Flow", "Reversible Defect"], type = "index", value = "NULL")
63
-
64
- with gr.Column():
65
- gr.Markdown("""![Heart Attack!](file/heartattack.jpeg)""")
66
 
67
 
68
  with gr.Column():
 
53
  age = gr.Number(label="What's your age?")
54
  sex = gr.Dropdown(label="What's your sex?", choices = ["Female", "Male"],type="index")
55
  cp = gr.inputs.Dropdown(["typical", "atypical", "other", "asymptomatic"], label="Chest pain type")
56
+
57
+ with gr.Column():
58
+ gr.Markdown("""![Heart Attack!](file/heartattack.jpeg)""")
59
 
60
  with gr.Column():
61
  trtbps = gr.inputs.Slider(50, 180, default=80, label="Resting blood pressure")
 
63
  fbs = gr.Dropdown(label="Is your fasting blood sugar > 120 mg/dl?", choices = ["yes","no"], type = "index")
64
  restecg = gr.Dropdown(label="What is your resting ECG result?", choices = ["normal","ST-T wave abnormality"], type = "index", value = "normal", info = "resting ESG result")
65
  thall = gr.Dropdown(label="What is your Thalassemia condition?", choices = ["NULL","Fixed Defect", "Normal Blood Flow", "Reversible Defect"], type = "index", value = "NULL")
 
 
 
66
 
67
 
68
  with gr.Column():