Skip to content

Commit 2630f95

Browse files
authored
Add documentation for batch inference (#4296)
* FPN deprecated warning * FPN deprecated warning * Add the documentation of batch inference and test * Add the documentation of options cfg and eval cfg * Modify the document description * Add doc description spacer * Update doc description
1 parent d2fe9b4 commit 2630f95

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/1_exist_data_model.md

+12
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ for frame in video:
4444

4545
A notebook demo can be found in [demo/inference_demo.ipynb](https://github.com/open-mmlab/mmdetection/blob/master/demo/inference_demo.ipynb).
4646

47+
Note: `inference_detector` only supports single-image inference for now.
48+
4749
### Asynchronous interface - supported for Python 3.7+
4850

4951
For Python 3.7+, MMDetection also supports async interfaces.
@@ -223,6 +225,16 @@ Optional arguments:
223225
- `--show`: If specified, detection results will be plotted on the images and shown in a new window. It is only applicable to single GPU testing and used for debugging and visualization. Please make sure that GUI is available in your environment. Otherwise, you may encounter an error like `cannot connect to X server`.
224226
- `--show-dir`: If specified, detection results will be plotted on the images and saved to the specified directory. It is only applicable to single GPU testing and used for debugging and visualization. You do NOT need a GUI available in your environment for using this option.
225227
- `--show-score-thr`: If specified, detections with scores below this threshold will be removed.
228+
- `--cfg-options`: if specified, the key-value pair optional cfg will be merged into config file
229+
- `--eval-options`: if specified, the key-value pair optional eval cfg will be kwargs for dataset.evaluate() function, it's only for evaluation
230+
231+
MMDetection supports inference with a single image or batched images in test mode. By default, we use single-image inference and you can use batch inference by modifying `samples_per_gpu` in the config of test data. You can do that either by modifying the config as below.
232+
233+
```shell
234+
data = dict(train=dict(...), val=dict(...), test=dict(samples_per_gpu=2, ...))
235+
```
236+
237+
Or you can set it through `--cfg-options` as `--cfg-options data.test.samples_per_gpu=2`
226238

227239
#### Examples
228240

0 commit comments

Comments
 (0)