Skip to content

Commit 21ee506

Browse files
committed
Corrected paths issue and remove junk files
1 parent d52af4f commit 21ee506

39 files changed

+81
-5229
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ results/
66
**byte_track_results**
77
**deep_sort_results**
88
**nor_fair_results**
9-
test_env/
9+
test_env/
10+
yolor/
11+
yolov5/
12+
yolov6/
13+
yolox/
14+
yolov7/

asone/__init__.py

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
NORFAIR = 2
99

1010

11-
# YOLOV5X6_PYTORCH = 0
12-
# YOLOV5S_PYTORCH = 2
13-
# YOLOV5N_PYTORCH = 4
14-
# YOLOV5M_PYTORCH = 6
15-
# YOLOV5L_PYTORCH = 8
16-
# YOLOV5X_PYTORCH = 10
17-
# YOLOV5N6_PYTORCH = 12
18-
# YOLOV5S6_PYTORCH = 14
19-
# YOLOV5M6_PYTORCH = 16
20-
# YOLOV5L6_PYTORCH = 18
11+
YOLOV5X6_PYTORCH = 0
12+
YOLOV5S_PYTORCH = 2
13+
YOLOV5N_PYTORCH = 4
14+
YOLOV5M_PYTORCH = 6
15+
YOLOV5L_PYTORCH = 8
16+
YOLOV5X_PYTORCH = 10
17+
YOLOV5N6_PYTORCH = 12
18+
YOLOV5S6_PYTORCH = 14
19+
YOLOV5M6_PYTORCH = 16
20+
YOLOV5L6_PYTORCH = 18
2121

2222

2323
YOLOV6N_PYTORCH = 20
@@ -28,13 +28,13 @@
2828
YOLOV6L_RELU_PYTORCH = 30
2929
YOLOV6S_REPOPT_PYTORCH = 32
3030

31-
# YOLOV7_TINY_PYTORCH = 34
32-
# YOLOV7_PYTORCH = 36
33-
# YOLOV7_X_PYTORCH = 38
34-
# YOLOV7_W6_PYTORCH = 40
35-
# YOLOV7_E6_PYTORCH = 42
36-
# YOLOV7_D6_PYTORCH = 44
37-
# YOLOV7_E6E_PYTORCH = 46
31+
YOLOV7_TINY_PYTORCH = 34
32+
YOLOV7_PYTORCH = 36
33+
YOLOV7_X_PYTORCH = 38
34+
YOLOV7_W6_PYTORCH = 40
35+
YOLOV7_E6_PYTORCH = 42
36+
YOLOV7_D6_PYTORCH = 44
37+
YOLOV7_E6E_PYTORCH = 46
3838

3939
YOLOR_CSP_X_PYTORCH = 48
4040
YOLOR_CSP_X_STAR_PYTORCH = 50

asone/detectors/temp/layers/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)