Spaces:
Sleeping
Sleeping
Commit
·
762717a
1
Parent(s):
6eea241
Update: font styling
Browse files
app.py
CHANGED
@@ -60,6 +60,9 @@ with gr.Blocks() as interface:
|
|
60 |
h1, h2, h3, h4, h5, h6, p, label {
|
61 |
color: white; /* Make all headings and labels white */
|
62 |
}
|
|
|
|
|
|
|
63 |
.gr-button {
|
64 |
background-color: #007bff; /* Optional: Change button background color */
|
65 |
color: white; /* Ensure button text is white */
|
@@ -70,8 +73,8 @@ with gr.Blocks() as interface:
|
|
70 |
</style>
|
71 |
""")
|
72 |
|
73 |
-
gr.Markdown("<h1
|
74 |
-
gr.Markdown("<p
|
75 |
|
76 |
default_sample = "Sample 1"
|
77 |
|
|
|
60 |
h1, h2, h3, h4, h5, h6, p, label {
|
61 |
color: white; /* Make all headings and labels white */
|
62 |
}
|
63 |
+
.gr-markdown {
|
64 |
+
color: white; /* Ensure Markdown text is white */
|
65 |
+
}
|
66 |
.gr-button {
|
67 |
background-color: #007bff; /* Optional: Change button background color */
|
68 |
color: white; /* Ensure button text is white */
|
|
|
73 |
</style>
|
74 |
""")
|
75 |
|
76 |
+
gr.Markdown("<h1>XAI: Visualize Object Detection of Your Models</h1>")
|
77 |
+
gr.Markdown("<p>Select a sample image to visualize object detection.</p>")
|
78 |
|
79 |
default_sample = "Sample 1"
|
80 |
|