clement-w commited on
Commit
080f6d7
·
1 Parent(s): cb087f7

Remove css

Browse files
Files changed (1) hide show
  1. app.py +4 -8
app.py CHANGED
@@ -115,14 +115,10 @@ def run_detector(url_input, image_input, minscore=0.1):
115
  return image_with_boxes
116
 
117
 
118
- css = '''
119
- h1#title {
120
- text-align: center;
121
- }
122
- '''
123
- demo = gr.Blocks(css=css)
124
-
125
- title = """<h1 id="title">Custom Cyclists detector</h1>"""
126
  description = """Model created for the ECS 171 final project at UC Davis. For more information, check out the github repo <a href="https://github.com/Clement-W/cyclists-counter">cyclists-counter</a>."""
127
 
128
 
 
115
  return image_with_boxes
116
 
117
 
118
+
119
+ demo = gr.Blocks()
120
+
121
+ title = """<h1 style="text-align: center;" id="title">Custom Cyclists detector</h1>"""
 
 
 
 
122
  description = """Model created for the ECS 171 final project at UC Davis. For more information, check out the github repo <a href="https://github.com/Clement-W/cyclists-counter">cyclists-counter</a>."""
123
 
124