mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* Fix include and lib paths for onnxruntime. * Fixes for SSD export test * Add onnx2openvino and OpenVINODetector. Test models: ssd, retinanet, fcos, fsaf. * Add support for two-stage models: faster_rcnn, cascade_rcnn * Add doc * Add strip_doc_string for openvino. * Fix openvino preprocess. * Add OpenVINO to test_wrapper.py. * Fix * Add openvino_execute. * Removed preprocessing. * Fix onnxruntime cmake. * Rewrote postprocessing and forward, added docstrings and fixes. * Added device type change to OpenVINOWrapper. * Update forward_of_single_roi_extractor_dynamic_openvino and fix doc. * Update docs. * Add OpenVINODetector and onn2openvino tests. * Add input_info to onnx2openvino. * Add TestOpenVINOExporter and test_single_roi_extractor. * Moved get_input_shape_from_cfg to openvino_utils.py and added test. * Added test_cascade_roi_head. * Add backend.check_env() to tests. * Add OpenVINO to get_rewrite_outputs and to some tests in test_mmdet_models. * Moved test_single_roi_extractor to test_mmdet_models. * Removed TestOpenVINOExporter.
24 lines
387 B
Markdown
24 lines
387 B
Markdown
## Build MMdeploy
|
|
|
|
### Build backend support
|
|
|
|
Update third-party libraries.
|
|
|
|
```bash
|
|
git submodule update --init
|
|
```
|
|
|
|
Build the inference engine extension libraries you need.
|
|
|
|
- [ONNX Runtime](ops/onnxruntime.md)
|
|
- [TensorRT](backends/tensorrt.md)
|
|
- [ncnn](backends/ncnn.md)
|
|
- [PPL](backends/ppl.md)
|
|
- [OpenVINO](backends/openvino.md)
|
|
|
|
### Install mmdeploy
|
|
|
|
```bash
|
|
pip install -e .
|
|
```
|