Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,49 +6,11 @@ import supervision as sv
|
|
6 |
from inference import get_model
|
7 |
|
8 |
MARKDOWN = """
|
9 |
-
<h1 style='text-align: center'>
|
10 |
-
|
11 |
-
|
12 |
-
|
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). 🔥
|
52 |
"""
|
53 |
|
54 |
IMAGE_EXAMPLES = [
|
|
|
6 |
from inference import get_model
|
7 |
|
8 |
MARKDOWN = """
|
9 |
+
<h1 style='text-align: center'> Comparison of Yolo Models 🏟️</h1>
|
10 |
+
|
11 |
+
YOLOV10 VS YOLOV9 VS YOLOV8 : The Ultimate Performance Comparison.
|
12 |
+
|
13 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
"""
|
15 |
|
16 |
IMAGE_EXAMPLES = [
|