forked from supervisely-ecosystem/RT-DETR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_list.py
97 lines (93 loc) · 2.93 KB
/
model_list.py
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
89
90
91
92
93
94
95
96
97
from copy import deepcopy
_models = [
{
"Model": "rtdetr_r18vd_coco",
"dataset": "COCO",
"AP_val": 46.4,
"Params(M)": 20,
"FPS(T4)": 217,
"meta": {
"task_type": "object detection",
"weights_url": "https://github.com/lyuwenyu/storage/releases/download/v0.1/rtdetr_r18vd_dec3_6x_coco_from_paddle.pth"
}
},
{
"Model": "rtdetr_r34vd_coco",
"dataset": "COCO",
"AP_val": 48.9,
"Params(M)": 31,
"FPS(T4)": 161,
"meta": {
"task_type": "object detection",
"weights_url": "https://github.com/lyuwenyu/storage/releases/download/v0.1/rtdetr_r34vd_dec4_6x_coco_from_paddle.pth"
}
},
{
"Model": "rtdetr_r50vd_m_coco",
"dataset": "COCO",
"AP_val": 51.3,
"Params(M)": 36,
"FPS(T4)": 145,
"meta": {
"task_type": "object detection",
"weights_url": "https://github.com/lyuwenyu/storage/releases/download/v0.1/rtdetr_r50vd_m_6x_coco_from_paddle.pth"
}
},
{
"Model": "rtdetr_r50vd_coco",
"dataset": "COCO",
"AP_val": 53.1,
"Params(M)": 42,
"FPS(T4)": 108,
"meta": {
"task_type": "object detection",
"weights_url": "https://github.com/lyuwenyu/storage/releases/download/v0.1/rtdetr_r50vd_6x_coco_from_paddle.pth"
}
},
{
"Model": "rtdetr_r101vd_coco",
"dataset": "COCO",
"AP_val": 54.3,
"Params(M)": 76,
"FPS(T4)": 74,
"meta": {
"task_type": "object detection",
"weights_url": "https://github.com/lyuwenyu/storage/releases/download/v0.1/rtdetr_r101vd_6x_coco_from_paddle.pth"
}
},
{
"Model": "rtdetr_r18vd_coco_objects365",
"dataset": "COCO+Objects365",
"AP_val": 49.0,
"Params(M)": 20,
"FPS(T4)": 217,
"meta": {
"task_type": "object detection",
"weights_url": "https://github.com/lyuwenyu/storage/releases/download/v0.1/rtdetr_r18vd_5x_coco_objects365_from_paddle.pth"
}
},
{
"Model": "rtdetr_r50vd_coco_objects365",
"dataset": "COCO+Objects365",
"AP_val": 55.2,
"Params(M)": 42,
"FPS(T4)": 108,
"meta": {
"task_type": "object detection",
"weights_url": "https://github.com/lyuwenyu/storage/releases/download/v0.1/rtdetr_r50vd_2x_coco_objects365_from_paddle.pth"
}
},
{
"Model": "rtdetr_r101vd_coco_objects365",
"dataset": "COCO+Objects365",
"AP_val": 56.2,
"Params(M)": 76,
"FPS(T4)": 74,
"meta": {
"task_type": "object detection",
"weights_url": "https://github.com/lyuwenyu/storage/releases/download/v0.1/rtdetr_r101vd_2x_coco_objects365_from_paddle.pth"
}
}
]
def get_models():
return deepcopy(_models)