datasciencedojo commited on
Commit
563a02c
1 Parent(s): c6083a8

remove footer

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -64,7 +64,13 @@ def predict_insurance(input_gender,input_age_group,input_hypertension,input_hear
64
  else:
65
  return "Risk of having stroke is low"
66
 
67
- with gr.Blocks() as demo:
 
 
 
 
 
 
68
  with gr.Row():
69
  input_gender = gr.Radio(["male", "female"],label="Gender")
70
  input_hypertension = gr.Radio(["yes", "no"],label="Hypertension")
 
64
  else:
65
  return "Risk of having stroke is low"
66
 
67
+ css = """
68
+ footer {display:none !important}
69
+ .output-markdown{display:none !important}
70
+ footer {visibility: hidden}
71
+ """
72
+
73
+ with gr.Blocks(title="Brain Stroke Prediction | Data Science Dojo", css = css) as demo:
74
  with gr.Row():
75
  input_gender = gr.Radio(["male", "female"],label="Gender")
76
  input_hypertension = gr.Radio(["yes", "no"],label="Hypertension")