Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -92,5 +92,23 @@ def app():
|
|
92 |
],
|
93 |
outputs=[output_numpy],
|
94 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
|
96 |
gradio_app.launch(debug=True)
|
|
|
92 |
],
|
93 |
outputs=[output_numpy],
|
94 |
)
|
95 |
+
|
96 |
+
gradio_app = gr.Blocks()
|
97 |
+
with gradio_app:
|
98 |
+
gr.HTML(
|
99 |
+
"""
|
100 |
+
<h1 style='text-align: center'>
|
101 |
+
YOLOv9
|
102 |
+
</h1>
|
103 |
+
""")
|
104 |
+
gr.HTML(
|
105 |
+
"""
|
106 |
+
<h3 style='text-align: center'>
|
107 |
+
Follow me for more!
|
108 |
+
</h3>
|
109 |
+
""")
|
110 |
+
with gr.Row():
|
111 |
+
with gr.Column():
|
112 |
+
app()
|
113 |
|
114 |
gradio_app.launch(debug=True)
|