saba000farahani commited on
Commit
9cbdc62
·
verified ·
1 Parent(s): e71bf6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -19
app.py CHANGED
@@ -198,25 +198,19 @@ with gr.Blocks() as demo:
198
  )
199
  gr.Button(value="Clear").click(fn=lambda: None)
200
 
201
- # Plot above the three columns of outputs
202
- with gr.Column():
203
- gr.Markdown("### Predictions")
204
- gr.Plot(label="Contamination Levels Over Time").render()
205
-
206
- with gr.Row():
207
- with gr.Column():
208
- gr.Markdown("#### Contamination Predictions")
209
- for out in contamination_outputs:
210
- out.render()
211
 
212
- with gr.Column():
213
- gr.Markdown("#### Gradient Predictions")
214
- for out in gradients_outputs:
215
- out.render()
216
-
217
- with gr.Column():
218
- gr.Markdown("#### Cleaning Time Predictions")
219
- for out in cleaning_time_outputs:
220
- out.render()
221
 
222
  demo.launch()
 
198
  )
199
  gr.Button(value="Clear").click(fn=lambda: None)
200
 
201
+ with gr.Column():
202
+ gr.Markdown("### Contamination Predictions")
203
+ for out in contamination_outputs:
204
+ out.render()
 
 
 
 
 
 
205
 
206
+ with gr.Column():
207
+ gr.Markdown("### Gradient Predictions")
208
+ for out in gradients_outputs:
209
+ out.render()
210
+
211
+ with gr.Column():
212
+ gr.Markdown("### Cleaning Time Predictions")
213
+ for out in cleaning_time_outputs:
214
+ out.render()
215
 
216
  demo.launch()