-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
88 lines (79 loc) · 4.4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Model Leaderboard</title>
<link rel="icon" type="image/x-icon" href="static/favicon.ico">
<link rel="stylesheet" href="static/light-theme.css">
<link rel="stylesheet" href="static/dark-theme.css" id="theme-link">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/2.1.5/css/dataTables.dataTables.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap">
</head>
<body>
<div class="container">
<div class="header-row">
<h1>Model Leaderboard</h1>
<div class="theme-toggle-container">
<input type="checkbox" id="theme-toggle" class="theme-toggle">
<label for="theme-toggle" class="theme-toggle-label">
<i class="fas fa-sun"></i>
<i class="fas fa-moon"></i>
</label>
</div>
</div>
<div class="subtitle-row">
<p class="sv-row">
powered by
<img src='https://supervision.roboflow.com/latest/assets/supervision-lenny.png' height=24 width=24
style='display: inline-block'>
<a class="sv-row" href='https://github.com/roboflow/supervision'>
supervision
</a>
|
<i class="fab fa-github" style="font-size: 24px; width: 24px; height: 24px;"></i>
<a class="sv-row" href='https://github.com/roboflow/model-leaderboard'>
model-leaderboard
</a>
</p>
<span>benchmarked on: <a href="https://cocodataset.org/#download">COCO 2017</a><br />
(validation set, 5k images)</span>
</div>
<table id="leaderboard">
<thead>
<tr>
<th data-header-tooltip="Model">Model</th>
<th data-header-tooltip="Parameters (M)">Parameters (M)</th>
<th data-header-tooltip="Mean Average Precision at IoU 50:95">mAP 50:95</th>
<th data-header-tooltip="Mean Average Precision at IoU 50">mAP 50</th>
<th data-header-tooltip="Mean Average Precision at IoU 75">mAP 75</th>
<th data-header-tooltip="Mean Average Precision at IoU 50:95 for Small Objects">mAP 50:95 (Small)</th>
<th data-header-tooltip="Mean Average Precision at IoU 50:95 for Medium Objects">mAP 50:95 (Medium)</th>
<th data-header-tooltip="Mean Average Precision at IoU 50:95 for Large Objects">mAP 50:95 (Large)</th>
<th data-header-tooltip="F1 Score at IoU 50">F1 50</th>
<th data-header-tooltip="F1 Score at IoU 75">F1 75</th>
<th data-header-tooltip="F1 Score at IoU 50 for Small Objects">F1 50 (Small)</th>
<th data-header-tooltip="F1 Score at IoU 75 for Small Objects">F1 75 (Small)</th>
<th data-header-tooltip="F1 Score at IoU 50 for Medium Objects">F1 50 (Medium)</th>
<th data-header-tooltip="F1 Score at IoU 75 for Medium Objects">F1 75 (Medium)</th>
<th data-header-tooltip="F1 Score at IoU 50 for Large Objects">F1 50 (Large)</th>
<th data-header-tooltip="F1 Score at IoU 75 for Large Objects">F1 75 (Large)</th>
<th data-header-tooltip="License">License</th>
</tr>
</thead>
<tbody id="table-body">
</tbody>
</table>
</div>
<div class="tooltip"></div>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@floating-ui/[email protected]"></script>
<script src="https://cdn.jsdelivr.net/npm/@floating-ui/[email protected]"></script>
<script src="https://cdn.datatables.net/2.1.5/js/dataTables.min.js"></script>
<script src="static/aggregate_results.js"></script>
<script src="static/script.js"></script>
<script src="static/theme-toggle.js"></script>
</body>
</html>