RamAnanth1 commited on
Commit
e052f63
·
1 Parent(s): 8685cda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -151,6 +151,11 @@ with gr.Blocks(css = css) as demo:
151
  gr.Markdown("""
152
  ## Epidemic Simulation
153
  """)
 
 
 
 
 
154
  population_input = gr.Slider(1000, 100000, value=10000, label = "Population")
155
  simulate_btn = gr.Button('Run Simulation')
156
  graph = gr.Plot()
 
151
  gr.Markdown("""
152
  ## Epidemic Simulation
153
  """)
154
+ gr.HTML('''
155
+ <p style="margin-bottom: 10px; font-size: 94%">
156
+ A cadCAD-based simulation of an outbreak of any epidemic using the SEIR compartmental model
157
+ </p>
158
+ ''')
159
  population_input = gr.Slider(1000, 100000, value=10000, label = "Population")
160
  simulate_btn = gr.Button('Run Simulation')
161
  graph = gr.Plot()