Skip to content

Commit c551b59

Browse files
authored
[doc]: add doc for pytorch2onnx (#4271)
* [doc]: add doc for pytorch2onnx * [doc]: remove blank lines * resolve format of doc * refact doc for pytorch2onnx * add space * add to index.rst
1 parent 2630f95 commit c551b59

File tree

4 files changed

+103
-6
lines changed

4 files changed

+103
-6
lines changed

docs/tutorials/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@
88
customize_runtime.md
99
customize_losses.md
1010
finetune.md
11+
pytorch2onnx.md

docs/tutorials/pytorch2onnx.md

+98
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# Tutorial 8: Pytorch to ONNX (Experimental)
2+
3+
<!-- TOC -->
4+
5+
- [Tutorial 8: Pytorch to ONNX (Experimental)](#tutorial-8-pytorch-to-onnx-experimental)
6+
- [How to convert models from Pytorch to ONNX](#how-to-convert-models-from-pytorch-to-onnx)
7+
- [Prerequisite](#prerequisite)
8+
- [Usage](#usage)
9+
- [List of supported models exportable to ONNX](#list-of-supported-models-exportable-to-onnx)
10+
- [Reminders](#reminders)
11+
- [FAQs](#faqs)
12+
13+
<!-- TOC -->
14+
15+
## How to convert models from Pytorch to ONNX
16+
17+
### Prerequisite
18+
19+
1. Please refer to [get_started.md](../get_started.md) for installation of MMCV and MMDetection.
20+
2. Install onnx and onnxruntime
21+
22+
```shell
23+
pip install onnx onnxruntime
24+
```
25+
26+
### Usage
27+
28+
```bash
29+
python tools/pytorch2onnx.py \
30+
${CONFIG_FILE} \
31+
${CHECKPOINT_FILE} \
32+
--output-file ${OUTPUT_FILE} \
33+
--input-img ${INPUT_IMAGE_PATH} \
34+
--shape ${IMAGE_SHAPE} \
35+
--mean ${IMAGE_MEAN} \
36+
--std ${IMAGE_STD} \
37+
--dataset ${DATASET_NAME} \
38+
--test-img ${TEST_IMAGE_PATH} \
39+
--opset-version ${OPSET_VERSION} \
40+
--show \
41+
--verify \
42+
```
43+
44+
Description of all arguments:
45+
46+
- `config` : The path of a model config file.
47+
- `checkpoint` : The path of a model checkpoint file.
48+
- `--output-file`: The path of output ONNX model. If not specified, it will be set to `tmp.onnx`.
49+
- `--input-img` : The path of an input image for tracing and conversion. By default, it will be set to `tests/data/color.jpg`.
50+
- `--shape`: The height and width of input tensor to the model. If not specified, it will be set to `800 1216`.
51+
- `--mean` : Three mean values for the input image. If not specified, it will be set to `123.675 116.28 103.53`.
52+
- `--std` : Three std values for the input image. If not specified, it will be set to `58.395 57.12 57.375`.
53+
- `--dataset` : The dataset name for the input model. If not specified, it will be set to `coco`.
54+
- `--test-img` : The path of an image to verify the exported ONNX model. By default, it will be set to `None`, meaning it will use `--input-img` for verification.
55+
- `--opset-version` : The opset version of ONNX. If not specified, it will be set to `11`.
56+
- `--show`: Determines whether to print the architecture of the exported model. If not specified, it will be set to `False`.
57+
- `--verify`: Determines whether to verify the correctness of an exported model. If not specified, it will be set to `False`.
58+
59+
Example:
60+
61+
```bash
62+
python tools/pytorch2onnx.py \
63+
configs/yolo/yolov3_d53_mstrain-608_273e_coco.py \
64+
checkpoints/yolo/yolov3_d53_mstrain-608_273e_coco.pth \
65+
--output-file checkpoints/yolo/yolov3_d53_mstrain-608_273e_coco.onnx \
66+
--input-img demo/demo.jpg \
67+
--test-img tests/data/color.jpg \
68+
--shape 608 608 \
69+
--mean 0 0 0 \
70+
--std 255 255 255 \
71+
--show \
72+
--verify \
73+
```
74+
75+
## List of supported models exportable to ONNX
76+
77+
The table below lists the models that are guaranteed to be exportable to ONNX and runnable in ONNX Runtime.
78+
79+
| Model | Config | Note |
80+
| :---------: | :--------------------------------------------------: | :---: |
81+
| SSD | `configs/ssd/ssd300_coco.py` | |
82+
| YOLOv3 | `configs/yolo/yolov3_d53_mstrain-608_273e_coco.py` | |
83+
| FSAF | `configs/fsaf/fsaf_r50_fpn_1x_coco.py` | |
84+
| RetinaNet | `configs/retinanet/retinanet_r50_fpn_1x_coco.py` | |
85+
| Faster-RCNN | `configs/faster_rcnn/faster_rcnn_r50_fpn_1x_coco.py` | |
86+
87+
Notes:
88+
89+
- *All models above are tested with Pytorch==1.6.0*
90+
91+
## Reminders
92+
93+
- If you meet any problem with the listed models above, please create an issue and it would be taken care of soon. For models not included in the list, please try to dig a little deeper and debug a little bit more and hopefully solve them by yourself.
94+
- Because this feature is experimental and may change fast, please always try with the latest `mmcv` and `mmdetecion`.
95+
96+
## FAQs
97+
98+
- None

docs/useful_tools.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,13 @@ Params: 37.74 M
113113

114114
### MMDetection model to ONNX (experimental)
115115

116-
We provide a script to convert model to [ONNX](https://github.com/onnx/onnx) format. We also support comparing the output results between Pytorch and
117-
ONNX model for verification.
116+
We provide a script to convert model to [ONNX](https://github.com/onnx/onnx) format. We also support comparing the output results between Pytorch and ONNX model for verification.
118117

119118
```shell
120119
python tools/pytorch2onnx.py ${CONFIG_FILE} ${CHECKPOINT_FILE} --output_file ${ONNX_FILE} [--shape ${INPUT_SHAPE} --verify]
121120
```
122121

123-
**Note**: This tool is still experimental. Some customized operators are not supported for now. We only support exporting RetinaNet model at this moment.
122+
**Note**: This tool is still experimental. Some customized operators are not supported for now. For a detailed description of the usage and the list of supported models, please refer to [pytorch2onnx](tutorials/pytorch2onnx.md).
124123

125124
### MMDetection 1.x model to MMDetection 2.x
126125

tools/pytorch2onnx.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,6 @@ def parse_args():
140140
'--test-img', type=str, default=None, help='Images for test')
141141
parser.add_argument(
142142
'--dataset', type=str, default='coco', help='Dataset name')
143-
parser.add_argument(
144-
'--view', action='store_true', help='Visualize results')
145143
parser.add_argument(
146144
'--verify',
147145
action='store_true',
@@ -200,4 +198,5 @@ def parse_args():
200198
output_file=args.output_file,
201199
verify=args.verify,
202200
normalize_cfg=normalize_cfg,
203-
dataset=args.dataset)
201+
dataset=args.dataset,
202+
test_img=args.test_img)

0 commit comments

Comments
 (0)