Update app.py
Browse files
app.py
CHANGED
@@ -198,25 +198,19 @@ with gr.Blocks() as demo:
|
|
198 |
)
|
199 |
gr.Button(value="Clear").click(fn=lambda: None)
|
200 |
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
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 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
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()
|