FranciscoLozDataScience commited on
Commit
73a446b
·
1 Parent(s): 8f08a5a

added break

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -50,9 +50,9 @@ def load_interface():
50
 
51
  #set blocks
52
  info_page = gr.Blocks()
53
- model_page = gr.Blocks()
54
 
55
- with info_page:
56
  # set title and description
57
  gr.Markdown(
58
  """
@@ -93,7 +93,7 @@ def load_interface():
93
  ![](smoker_cm.png)
94
 
95
  ## Final Report
96
- For more details about our Ensemble Classifier and the individual models, please refer to our Jupyter notebooks in our project repository.
97
  [DSC 478 Project Repo](https://github.com/msoria17/dsc478-project)
98
  """
99
  )
@@ -103,8 +103,8 @@ def load_interface():
103
  gr.Markdown(
104
  """
105
  # Interact with the Ensemble Classifier Model
106
- Enter sample bio data to predict smoking status.
107
- Medical Disclaimer: The predictions provided by this model are for educational purposes only and should not be considered a substitute for professional medical advice.
108
  """)
109
 
110
  #set inputs in rows of 3
 
50
 
51
  #set blocks
52
  info_page = gr.Blocks()
53
+ model_page = gr.Blocks() #TODO: get examples working
54
 
55
+ with info_page: #TODO: get CM image working
56
  # set title and description
57
  gr.Markdown(
58
  """
 
93
  ![](smoker_cm.png)
94
 
95
  ## Final Report
96
+ For more details about our Ensemble Classifier and the individual models, please refer to our Jupyter notebooks in our project repository.\n
97
  [DSC 478 Project Repo](https://github.com/msoria17/dsc478-project)
98
  """
99
  )
 
103
  gr.Markdown(
104
  """
105
  # Interact with the Ensemble Classifier Model
106
+ Enter sample bio data to predict smoking status.\n
107
+ **Medical Disclaimer**: The predictions provided by this model are for educational purposes only and should not be considered a substitute for professional medical advice.
108
  """)
109
 
110
  #set inputs in rows of 3