Spaces:
Sleeping
Sleeping
update css
Browse files
app.py
CHANGED
@@ -60,7 +60,13 @@ def view_model(selected_models):
|
|
60 |
return netron_html if netron_html else "<p>No valid models selected for visualization.</p>"
|
61 |
|
62 |
custom_css = """
|
63 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
#custom-row {
|
65 |
margin: 0 !important;
|
66 |
padding: 0 !important;
|
@@ -79,13 +85,11 @@ custom_css = """
|
|
79 |
|
80 |
with gr.Blocks(css=custom_css) as interface:
|
81 |
gr.Markdown("""
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
and gain a deeper understanding of model behavior at different layers, all within an intuitive interface.</p>
|
88 |
-
""")
|
89 |
|
90 |
# Default sample
|
91 |
default_sample = "Sample 1"
|
|
|
60 |
return netron_html if netron_html else "<p>No valid models selected for visualization.</p>"
|
61 |
|
62 |
custom_css = """
|
63 |
+
#run_button {
|
64 |
+
background-color: purple !important;
|
65 |
+
color: white !important;
|
66 |
+
width: 120px !important;
|
67 |
+
border-radius: 5px !important;
|
68 |
+
font-size: 14px !important;
|
69 |
+
}
|
70 |
#custom-row {
|
71 |
margin: 0 !important;
|
72 |
padding: 0 !important;
|
|
|
85 |
|
86 |
with gr.Blocks(css=custom_css) as interface:
|
87 |
gr.Markdown("""
|
88 |
+
## NeuralVista
|
89 |
+
<p>Welcome to <span id="highlighted-text">NeuralVista</span>, a powerful tool designed to help you visualize object detection models in action.</p>
|
90 |
+
<p id="custom-row">With the integration of state-of-the-art YOLO models, you can explore the performance of object detection algorithms on various images.</p>
|
91 |
+
""")
|
92 |
+
|
|
|
|
|
93 |
|
94 |
# Default sample
|
95 |
default_sample = "Sample 1"
|