README.md 6.13 KB
Newer Older
pangjm's avatar
pangjm committed
1

Kai Chen's avatar
Kai Chen committed
2
# mmdetection
Dahua Lin's avatar
Dahua Lin committed
3

Kai Chen's avatar
Kai Chen committed
4
## Introduction
Dahua Lin's avatar
Dahua Lin committed
5

Kai Chen's avatar
Kai Chen committed
6
7
mmdetection is an open source object detection toolbox based on PyTorch. It is
a part of the open-mmlab project developed by [Multimedia Laboratory, CUHK](http://mmlab.ie.cuhk.edu.hk/).
Dahua Lin's avatar
Dahua Lin committed
8

Kai Chen's avatar
Kai Chen committed
9
### Major features
Dahua Lin's avatar
Dahua Lin committed
10
11
12
13
14
15
16

- **Modular Design**

  One can easily construct a customized object detection framework by combining different components. 
  
- **Support of multiple frameworks out of box**

Kai Chen's avatar
Kai Chen committed
17
  The toolbox directly supports popular detection frameworks, *e.g.* Faster RCNN, Mask RCNN, RetinaNet, etc.
Kai Chen's avatar
Kai Chen committed
18
19
20
21
22

- **Efficient**

  All basic bbox and mask operations run on GPUs now.
  The training speed is about 5% ~ 20% faster than Detectron for different models.
Dahua Lin's avatar
Dahua Lin committed
23
24
25
  
- **State of the art**

Dahua Lin's avatar
Dahua Lin committed
26
  This was the codebase of the *MMDet* team, who won the [COCO Detection 2018 challenge](http://cocodataset.org/#detection-leaderboard). 
Kai Chen's avatar
Kai Chen committed
27

Kai Chen's avatar
Kai Chen committed
28
29
Apart from mmdetection, we also released a library [mmcv](https://github.com/open-mmlab/mmcv) for computer vision research,
which is heavily depended on by this toolbox.
Kai Chen's avatar
Kai Chen committed
30
31
32
33
34
35
36

## License

This project is released under the [GPLv3 license](LICENSE).

## Benchmark and model zoo

Kai Chen's avatar
Kai Chen committed
37
38
We provide our baseline results and the comparision with Detectron, the most
popular detection projects. Results and models are available in the [Model zoo](MODEL_ZOO.md).
Kai Chen's avatar
Kai Chen committed
39
40
41

## Installation

Kai Chen's avatar
Kai Chen committed
42
### Requirements
Kai Chen's avatar
Kai Chen committed
43
44
45
46
47
48
49
50
51

- Linux (tested on Ubuntu 16.04 and CentOS 7.2)
- Python 2.7+ or 3.4+
- PyTorch 0.4.1 and torchvision
- OpenCV
- [mmcv](https://github.com/open-mmlab/mmcv)

> Note: Though mmdetection is compatible with Python 2/3, python 3 is recommended and we do not promise future support for Python 2.

Kai Chen's avatar
Kai Chen committed
52
53
54
55
56
### Install mmdetection

a. Install PyTorch 0.4.1 and torchvision following the [official instructions](https://pytorch.org/).

b. Clone the Detectron repository.
Kai Chen's avatar
Kai Chen committed
57
58
59
60
61

```shell
git clone https://github.com/open-mmlab/mmdetection.git
```

Kai Chen's avatar
Kai Chen committed
62
c. Compile cuda extensions.
Kai Chen's avatar
Kai Chen committed
63
64
65
66
67
68

```shell
cd mmdetection
./compile.sh  # or "PYTHON=python3 ./compile.sh" if you use system python3 without virtual environments
```

Kai Chen's avatar
Kai Chen committed
69
d. Install mmdetection (other dependencies will be installed automatically).
Kai Chen's avatar
Kai Chen committed
70
71
72
73
74
75

```shell
python(3) setup.py install  # add --user if you want to install it locally
# or "pip install ."
```

Kai Chen's avatar
Kai Chen committed
76
77
Note: You need to run the last step each time you pull updates from github.
The git commit id will be written to the version number and also saved in trained models.
Kai Chen's avatar
Kai Chen committed
78

Kai Chen's avatar
Kai Chen committed
79
### Prepare COCO dataset.
Kai Chen's avatar
Kai Chen committed
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99

It is recommended to symlink the dataset root to `$MMDETECTION/data`.

```
mmdetection
├── mmdet
├── tools
├── configs
├── data
│   ├── coco
│   │   ├── annotations
│   │   ├── train2017
│   │   ├── val2017
│   │   ├── test2017

```


## Inference with pretrained models

Kai Chen's avatar
Kai Chen committed
100
101
102
103
104
105
106
107
108
109
110
111
### Test a dataset

- [x] single GPU testing
- [x] multiple GPU testing
- [x] visualize detection results

We allow to run one or multiple processes on each GPU, e.g. 8 processes on 8 GPU
or 16 processes on 8 GPU. When the GPU workload is not very heavy for a single
process, running multiple processes will accelerate the testing, which is specified
with the argument `--proc_per_gpu <PROCESS_NUM>`.


Kai Chen's avatar
Kai Chen committed
112
113
114
115
116
117
118
119
120
121
122
123
124
125
To test a dataset and save the results.

```shell
python tools/test.py <CONFIG_FILE> <CHECKPOINT_FILE> --gpus <GPU_NUM> --out <OUT_FILE>
```

To perform evaluation after testing, add `--eval <EVAL_TYPES>`. Supported types are:

- proposal_fast: eval recalls of proposals with our own codes. (supposed to get the same results as the official evaluation)
- proposal: eval recalls of proposals with the official code provided by COCO.
- bbox: eval box AP with the official code provided by COCO.
- segm: eval mask AP with the official code provided by COCO.
- keypoints: eval keypoint AP with the official code provided by COCO.

Kai Chen's avatar
Kai Chen committed
126
For example, to evaluate Mask R-CNN with 8 GPUs and save the result as `results.pkl`.
Kai Chen's avatar
Kai Chen committed
127
128
129
130
131

```shell
python tools/test.py configs/mask_rcnn_r50_fpn_1x.py <CHECKPOINT_FILE> --gpus 8 --out results.pkl --eval bbox segm
```

Kai Chen's avatar
Kai Chen committed
132
It is also convenient to visualize the results during testing by adding an argument `--show`.
Kai Chen's avatar
Kai Chen committed
133
134
135
136
137

```shell
python tools/test.py <CONFIG_FILE> <CHECKPOINT_FILE> --show
```

Kai Chen's avatar
Kai Chen committed
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
### Test image(s)

We provide some high-level apis (experimental) to test an image.

```python
import mmcv
from mmcv.runner import load_checkpoint
from mmdet.models import build_detector
from mmdet.apis import inference_detector, show_result

cfg = mmcv.Config.fromfile('configs/faster_rcnn_r50_fpn_1x.py')
cfg.model.pretrained = None

# construct the model and load checkpoint
model = build_detector(cfg.model, test_cfg=cfg.test_cfg)
_ = load_checkpoint(model, 'https://s3.ap-northeast-2.amazonaws.com/open-mmlab/mmdetection/models/faster_rcnn_r50_fpn_1x_20181010-3d1b3351.pth')

# test a single image
img = mmcv.imread('test.jpg')
result = inference_detector(model, img, cfg)
show_result(img, result)

# test a list of images
imgs = ['test1.jpg', 'test2.jpg']
for i, result in enumerate(inference_detector(model, imgs, cfg, device='cuda:0')):
    print(i, imgs[i])
    show_result(imgs[i], result)
```

Kai Chen's avatar
Kai Chen committed
167
168
169

## Train a model

Kai Chen's avatar
Kai Chen committed
170
mmdetection implements distributed training and non-distributed training,
Kai Chen's avatar
Kai Chen committed
171
172
173
174
175
176
177
which uses `MMDistributedDataParallel` and `MMDataParallel` respectively.

We suggest using distributed training even on a single machine, which is faster,
and non-distributed training are left for debugging or other purposes.

### Distributed training

Kai Chen's avatar
Kai Chen committed
178
mmdetection potentially supports multiple launch methods, e.g., PyTorch’s built-in launch utility, slurm and MPI.
Kai Chen's avatar
Kai Chen committed
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203

We provide a training script using the launch utility provided by PyTorch.

```shell
./tools/dist_train.sh <CONFIG_FILE> <GPU_NUM> [optional arguments]
```

Supported arguments are:

- --validate: perform evaluation every k (default=1) epochs during the training.
- --work_dir <WORK_DIR>: if specified, the path in config file will be overwritten.

### Non-distributed training

```shell
python tools/train.py <CONFIG_FILE> --gpus <GPU_NUM> --work_dir <WORK_DIR> --validate
```

Expected results in WORK_DIR:

- log file
- saved checkpoints (every k epochs, defaults=1)
- a symbol link to the latest checkpoint


Kai Chen's avatar
Kai Chen committed
204
## Technical details
Kai Chen's avatar
Kai Chen committed
205

Kai Chen's avatar
Kai Chen committed
206
Some implementation details and project structures are described in the [technical details](TECHNICAL_DETAILS.md).