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