You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+35-20Lines changed: 35 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,12 @@
1
1
## A pytorch easy re-implement of "YOLOX: Exceeding YOLO Series in 2021"
2
2
3
3
## 1. Notes
4
+
4
5
This is a pytorch easy re-implement of "YOLOX: Exceeding YOLO Series in 2021" [https://arxiv.org/abs/2107.08430]
5
6
The repo is still under development
6
7
7
8
## 2. Environment
9
+
8
10
pytorch>=1.7.0, python>=3.6, Ubuntu/Windows, see more in 'requirements.txt'
9
11
10
12
cd /path/to/your/work
@@ -16,7 +18,9 @@
16
18
17
19
#### Model Zoo
18
20
19
-
All weights can be downloaded from [GoogleDrive](https://drive.google.com/drive/folders/1qEMLzikH5JwRNRoHpeCa6BJBeSQ6xXCH?usp=sharing) or [BaiduDrive](https://pan.baidu.com/s/1UsbdnyVwRJhr9Vy1tmJLeQ) (code:bc72)
21
+
All weights can be downloaded
22
+
from [GoogleDrive](https://drive.google.com/drive/folders/1qEMLzikH5JwRNRoHpeCa6BJBeSQ6xXCH?usp=sharing)
23
+
or [BaiduDrive](https://pan.baidu.com/s/1UsbdnyVwRJhr9Vy1tmJLeQ) (code:bc72)
@@ -28,9 +32,11 @@ All weights can be downloaded from [GoogleDrive](https://drive.google.com/drive/
28
32
|yolox-x |640 |50.5 |51.1 |99.1 |
29
33
|yolox-x |800 |51.2 |51.9 |99.1 |
30
34
31
-
mAP was reevaluated on COCO val2017 and test2017, and some results are slightly better than the official implement [YOLOX](https://github.com/Megvii-BaseDetection/YOLOX). You can reproduce them by scripts in 'evaluate.sh'
35
+
mAP was reevaluated on COCO val2017 and test2017, and some results are slightly better than the official
36
+
implement [YOLOX](https://github.com/Megvii-BaseDetection/YOLOX). You can reproduce them by scripts in 'evaluate.sh'
32
37
33
38
#### Dataset
39
+
34
40
download COCO:
35
41
http://images.cocodataset.org/zips/train2017.zip
36
42
http://images.cocodataset.org/zips/val2017.zip
@@ -45,34 +51,37 @@ mAP was reevaluated on COCO val2017 and test2017, and some results are slightly
45
51
change opt.dataset_path = "/path/to/dataset" in 'config.py'
46
52
47
53
#### Train
54
+
48
55
See more example in 'train.sh'
49
-
a. Train from scratch:(backbone="CSPDarknet-s" means using yolox-s, and you can change it to any other backbone, eg: CSPDarknet-nano, tiny, s, m, l, x)
0 commit comments