Update app.py
Browse files
app.py
CHANGED
|
@@ -253,20 +253,20 @@ with gr.Blocks(title=title) as demo:
|
|
| 253 |
|
| 254 |
gr.Markdown("## Test Samples")
|
| 255 |
|
| 256 |
-
with gr.Row():
|
| 257 |
-
with gr.Column():
|
| 258 |
gr.Image("images/NORMAL.jpeg", label="Image")
|
| 259 |
with gr.Column():
|
| 260 |
gr.Markdown("**NORMAL**")
|
| 261 |
|
| 262 |
-
with gr.Row():
|
| 263 |
-
with gr.Column():
|
| 264 |
gr.Image("images/VIRAL.jpeg", label="Image")
|
| 265 |
with gr.Column():
|
| 266 |
gr.Markdown("**VIRAL**")
|
| 267 |
|
| 268 |
-
with gr.Row():
|
| 269 |
-
with gr.Column():
|
| 270 |
gr.Image("images/BACT.jpeg", label="Image")
|
| 271 |
with gr.Column():
|
| 272 |
gr.Markdown("**BACTERIAL**")
|
|
|
|
| 253 |
|
| 254 |
gr.Markdown("## Test Samples")
|
| 255 |
|
| 256 |
+
with gr.Row(scale=1):
|
| 257 |
+
with gr.Column(scale=1):
|
| 258 |
gr.Image("images/NORMAL.jpeg", label="Image")
|
| 259 |
with gr.Column():
|
| 260 |
gr.Markdown("**NORMAL**")
|
| 261 |
|
| 262 |
+
with gr.Row(scale=1):
|
| 263 |
+
with gr.Column(scale=1):
|
| 264 |
gr.Image("images/VIRAL.jpeg", label="Image")
|
| 265 |
with gr.Column():
|
| 266 |
gr.Markdown("**VIRAL**")
|
| 267 |
|
| 268 |
+
with gr.Row(scale=1):
|
| 269 |
+
with gr.Column(scale=1):
|
| 270 |
gr.Image("images/BACT.jpeg", label="Image")
|
| 271 |
with gr.Column():
|
| 272 |
gr.Markdown("**BACTERIAL**")
|