BhumikaMak commited on
Commit
4f309dc
·
verified ·
1 Parent(s): ee93934

update css

Browse files
Files changed (1) hide show
  1. app.py +12 -8
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
- ## NeuralVista
83
- <p>Welcome to <span class="highlighted-text">NeuralVista</span>, a powerful tool designed to help you visualize object detection models in action.
84
- With the integration of state-of-the-art YOLO models, you can explore the performance of object detection algorithms on various images.</p>
85
- <p>Whether you're looking to analyze pre-existing samples or upload your own images, NeuralVista allows you to experiment with different YOLO versions,
86
- providing you with valuable insights into how these models interpret and detect objects. Additionally, you can view deep feature factorization outputs
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"