Update app.py
Browse files
app.py
CHANGED
|
@@ -132,27 +132,21 @@ def app():
|
|
| 132 |
|
| 133 |
gradio_app = gr.Blocks()
|
| 134 |
with gradio_app:
|
| 135 |
-
gr.
|
| 136 |
"""
|
| 137 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 138 |
"""
|
| 139 |
-
|
| 140 |
-
|
| 141 |
-
|
| 142 |
-
|
| 143 |
-
"""
|
| 144 |
-
)
|
| 145 |
with gr.Row():
|
| 146 |
-
gr.
|
| 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)
|