mirror of
https://github.com/open-mmlab/mmdeploy.git
synced 2025-01-14 08:09:43 +08:00
* checkout qq group qrcode * update the cover image * update build doc * reorganize chapters * update readme * remove index of build on different platforms in readthedocs * update benchmark * update get started document in Chinese based on the prebuild package * update get_started * re-style benchmark * update get_started in zh_cn * update get_started in english * update get_started in english * update get_started in english * update get_started doc * update according to reviewer comments * update linker ci * fix(.github/scripts/check_doc_linker.py): skip code block * specify PYTHONPATH * update get_started * update diagram * rename some documents * fix according to reviewer comments Co-authored-by: tpoisonooo <khj.application@aliyun.com>
24 lines
744 B
Markdown
24 lines
744 B
Markdown
# PPLNN Support
|
|
|
|
This tutorial is based on Linux systems like Ubuntu-18.04.
|
|
|
|
## Installation
|
|
|
|
1. Please install [pyppl](https://github.com/openppl-public/ppl.nn) following [install-guide](https://github.com/openppl-public/ppl.nn/blob/master/docs/en/building-from-source.md).
|
|
|
|
2. Install MMDeploy following the [instructions](../01-how-to-build/build_from_source.md).
|
|
|
|
## Usage
|
|
|
|
Example:
|
|
```bash
|
|
python tools/deploy.py \
|
|
configs/mmdet/detection/detection_pplnn_dynamic-800x1344.py \
|
|
/mmdetection_dir/mmdetection/configs/retinanet/retinanet_r50_fpn_1x_coco.py \
|
|
/tmp/snapshots/retinanet_r50_fpn_1x_coco_20200130-c2398f9e.pth \
|
|
tests/data/tiger.jpeg \
|
|
--work-dir ../deploy_result \
|
|
--device cuda \
|
|
--log-level INFO
|
|
```
|