SkalskiP commited on
Commit
9b36e34
1 Parent(s): 174b6f3

buttons with links leading to resources

Browse files
Files changed (1) hide show
  1. app.py +35 -3
app.py CHANGED
@@ -11,9 +11,41 @@ MARKDOWN = """
11
  Welcome to YOLO-Arena! This demo showcases the performance of various YOLO models
12
  pre-trained on the COCO dataset.
13
 
14
- - YOLOv8 [[code](https://github.com/ultralytics/ultralytics)]
15
- - YOLOv9 [[code](https://github.com/WongKinYiu/yolov9)]
16
- - YOLOv10 [[code](https://github.com/THU-MIG/yolov10)]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
 
18
  Powered by Roboflow [Inference](https://github.com/roboflow/inference) and
19
  [Supervision](https://github.com/roboflow/supervision). 🔥
 
11
  Welcome to YOLO-Arena! This demo showcases the performance of various YOLO models
12
  pre-trained on the COCO dataset.
13
 
14
+ - **YOLOv8**
15
+ <div style="display: flex; align-items: center;">
16
+ <a href="https://github.com/ultralytics/ultralytics" style="margin-right: 10px;">
17
+ <img src="https://badges.aleen42.com/src/github.svg">
18
+ </a>
19
+ <a href="https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/train-yolov8-object-detection-on-custom-dataset.ipynb" style="margin-right: 10px;">
20
+ <img src="https://colab.research.google.com/assets/colab-badge.svg">
21
+ </a>
22
+ </div>
23
+
24
+ - **YOLOv9**
25
+ <div style="display: flex; align-items: center;">
26
+ <a href="https://github.com/WongKinYiu/yolov9" style="margin-right: 10px;">
27
+ <img src="https://badges.aleen42.com/src/github.svg">
28
+ </a>
29
+ <a href="https://arxiv.org/abs/2402.13616" style="margin-right: 10px;">
30
+ <img src="https://img.shields.io/badge/arXiv-2402.13616-b31b1b.svg">
31
+ </a>
32
+ <a href="https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/train-yolov9-object-detection-on-custom-dataset.ipynb" style="margin-right: 10px;">
33
+ <img src="https://colab.research.google.com/assets/colab-badge.svg">
34
+ </a>
35
+ </div>
36
+
37
+ - **YOLOv10**
38
+ <div style="display: flex; align-items: center;">
39
+ <a href="https://github.com/THU-MIG/yolov10" style="margin-right: 10px;">
40
+ <img src="https://badges.aleen42.com/src/github.svg">
41
+ </a>
42
+ <a href="https://arxiv.org/abs/2405.14458" style="margin-right: 10px;">
43
+ <img src="https://img.shields.io/badge/arXiv-2405.14458-b31b1b.svg">
44
+ </a>
45
+ <a href="https://colab.research.google.com/github/roboflow-ai/notebooks/blob/main/notebooks/train-yolov10-object-detection-on-custom-dataset.ipynb" style="margin-right: 10px;">
46
+ <img src="https://colab.research.google.com/assets/colab-badge.svg">
47
+ </a>
48
+ </div>
49
 
50
  Powered by Roboflow [Inference](https://github.com/roboflow/inference) and
51
  [Supervision](https://github.com/roboflow/supervision). 🔥