kadirnar commited on
Commit
1847e89
1 Parent(s): b5c7bac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -19
app.py CHANGED
@@ -132,27 +132,21 @@ def app():
132
 
133
  gradio_app = gr.Blocks()
134
  with gradio_app:
135
- gr.Markdown(
136
  """
137
- # YOLOv10: State-of-the-Art Object Detection
 
 
 
 
138
  """
139
- )
140
- gr.Markdown(
141
- """
142
- Detect objects in images using the YOLOv10 model. Select a pre-trained model, adjust the inference settings, and upload an image to see the detected objects.
143
- """
144
- )
145
  with gr.Row():
146
- gr.Markdown(
147
- """
148
- Follow me for more projects and updates:
149
- - [Twitter](https://twitter.com/kadirnar_ai)
150
- - [GitHub](https://github.com/kadirnar)
151
- - [LinkedIn](https://www.linkedin.com/in/kadir-nar/)
152
- - [HuggingFace](https://www.huggingface.co/kadirnar/)
153
- """
154
- )
155
-
156
- app()
157
 
158
  gradio_app.launch(debug=True)
 
132
 
133
  gradio_app = gr.Blocks()
134
  with gradio_app:
135
+ gr.HTML(
136
  """
137
+ <h1 style='text-align: center'>
138
+ YOLOv10: Real-Time End-to-End Object Detection
139
+ </h1>
140
+ """)
141
+ gr.HTML(
142
  """
143
+ <h3 style='text-align: center'>
144
+ Follow me for more!
145
+ <a href='https://twitter.com/kadirnar_ai' target='_blank'>Twitter</a> | <a href='https://github.com/kadirnar' target='_blank'>Github</a> | <a href='https://www.linkedin.com/in/kadir-nar/' target='_blank'>Linkedin</a> | <a href='https://www.huggingface.co/kadirnar/' target='_blank'>HuggingFace</a>
146
+ </h3>
147
+ """)
 
148
  with gr.Row():
149
+ with gr.Column():
150
+ app()
 
 
 
 
 
 
 
 
 
151
 
152
  gradio_app.launch(debug=True)