Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,7 @@ css = """
|
|
20 |
}
|
21 |
.gr-button {
|
22 |
background-color: #007bff; /* Same color as the heading */
|
23 |
-
color:
|
24 |
border-radius: 5px;
|
25 |
font-size: 16px;
|
26 |
}
|
@@ -71,7 +71,7 @@ examples = [
|
|
71 |
|
72 |
with gr.Blocks(css=css) as interface:
|
73 |
gr.Markdown("<h1>Automated Pneumonia Detection via Chest X-ray Classification</h1>")
|
74 |
-
gr.Markdown("<p>
|
75 |
|
76 |
with gr.Row():
|
77 |
image_input = gr.Image(label="Drop Image Here", type="pil", elem_classes=["gr-image", "gr-box-text"])
|
|
|
20 |
}
|
21 |
.gr-button {
|
22 |
background-color: #007bff; /* Same color as the heading */
|
23 |
+
color: blue;
|
24 |
border-radius: 5px;
|
25 |
font-size: 16px;
|
26 |
}
|
|
|
71 |
|
72 |
with gr.Blocks(css=css) as interface:
|
73 |
gr.Markdown("<h1>Automated Pneumonia Detection via Chest X-ray Classification</h1>")
|
74 |
+
gr.Markdown("<p>Submit a chest X-ray image below.</p>")
|
75 |
|
76 |
with gr.Row():
|
77 |
image_input = gr.Image(label="Drop Image Here", type="pil", elem_classes=["gr-image", "gr-box-text"])
|