From 167ea340274de244d3a4396cea331387d317d167 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sencer=20Y=C3=BCcel?= Date: Mon, 3 Jun 2024 08:54:40 +0300 Subject: [PATCH] the paper's link and the repo's link are added to the gradio UI --- app.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index b5bc33d5..537df115 100644 --- a/app.py +++ b/app.py @@ -161,8 +161,14 @@ with gradio_app: YOLOv10: Real-Time End-to-End Object Detection """) + gr.HTML( + """ +

+ arXiv | github +

+ """) with gr.Row(): with gr.Column(): app() - -gradio_app.launch(debug=True) +if __name__ == '__main__': + gradio_app.launch()