OpenMMLab Model Deployment Framework
 
 
 
 
 
 
Go to file
RunningLeon 31e8aed862
update ppl benchmark (#293)
2021-12-17 10:44:49 +08:00
.github Template for issue & pr (#287) 2021-12-14 16:30:44 +08:00
cmake Merge sdk (#251) 2021-12-07 10:57:55 +08:00
configs Add new configs for ocr (#295) 2021-12-15 19:51:38 +08:00
csrc [SDK] update ppl.cv to latest version and use it's cmake package (#294) 2021-12-16 16:33:14 +08:00
demo change trt to tensorrt and ort to onnxruntime according to sdk model spec (#282) 2021-12-13 14:58:01 +08:00
docs update ppl benchmark (#293) 2021-12-17 10:44:49 +08:00
docs_zh_CN [Fix] Reanme ppl to pplnn for all cases (#273) 2021-12-14 15:04:39 +08:00
mmdeploy update ppl benchmark (#293) 2021-12-17 10:44:49 +08:00
requirements Add new configs for ocr (#295) 2021-12-15 19:51:38 +08:00
resources Update README (#288) 2021-12-16 19:22:14 +08:00
tests [SDK] sync changes according to performance benchmarks (#297) 2021-12-16 13:51:22 +08:00
third_party Merge sdk (#251) 2021-12-07 10:57:55 +08:00
tools [Feature]: Add onnx2pplnn tool (#296) 2021-12-16 17:01:33 +08:00
.clang-format Merge sdk (#251) 2021-12-07 10:57:55 +08:00
.gitignore remove file (#285) 2021-12-13 13:01:30 +08:00
.gitmodules Merge sdk (#251) 2021-12-07 10:57:55 +08:00
.isort.cfg [Fix]: update doc requirement (#274) 2021-12-13 19:36:30 +08:00
.pre-commit-config.yaml Merge sdk (#251) 2021-12-07 10:57:55 +08:00
.pylintrc add pylint score (#119) 2021-10-11 14:52:19 +08:00
.readthedocs.yml [Docs]: Add sphinx document (#109) 2021-10-09 14:10:42 +08:00
CITATION.cff Add citation (#151) 2021-10-27 15:03:40 +08:00
CMakeLists.txt Merge sdk (#251) 2021-12-07 10:57:55 +08:00
LICENSE
MANIFEST.in [Refactor] Refactor config v1 (#80) 2021-09-16 10:26:09 +08:00
README.md Update README (#288) 2021-12-16 19:22:14 +08:00
README_zh-CN.md [Fix] Reanme ppl to pplnn for all cases (#273) 2021-12-14 15:04:39 +08:00
requirements.txt [Refactor] Refactor config v1 (#80) 2021-09-16 10:26:09 +08:00
setup.cfg
setup.py [Refactor] Refactor config v1 (#80) 2021-09-16 10:26:09 +08:00

README.md

Introduction

English | 简体中文

MMDeploy is an open-source deep learning model deployment toolset. It is a part of the OpenMMLab project.

Major features

  • Fully support OpenMMLab models

    We provide a unified model deployment toolbox for the codebases in OpenMMLab. The supported codebases are listed as below, and more will be added in the future

    • MMClassification
    • MMDetection
    • MMSegmentation
    • MMEditing
    • MMOCR
  • Multiple inference backends are available

    Models can be exported and run in different backends. The following ones are supported, and more will be taken into consideration

    • ONNX Runtime
    • TensorRT
    • PPLNN
    • ncnn
    • OpenVINO
  • Efficient and highly scalable SDK Framework by C/C++

    All kinds of modules in SDK can be extensible, such as Transform for image processing, Net for Neural Network inference, Module for postprocessing and so on

License

This project is released under the Apache 2.0 license.

Installation

Please refer to build.md for installation.

Getting Started

Please see getting_started.md for the basic usage of MMDeploy. We also provide other tutorials for:

Please refer to FAQ for frequently asked questions.

Contributing

We appreciate all contributions to improve MMDeploy. Please refer to CONTRIBUTING.md for the contributing guideline.

Acknowledgement

We would like to thank OpenVINO team, for their remarkable efforts to export MMDetection models to OpenVINO and integrate OpenVINO into MMDeploy backends

Citation

If you find this project useful in your research, please consider cite:

@misc{=mmdeploy,
    title={OpenMMLab's Model Deployment Toolbox.},
    author={MMDeploy Contributors},
    howpublished = {\url{https://github.com/open-mmlab/mmdeploy}},
    year={2021}
}

Projects in OpenMMLab

  • MMCV: OpenMMLab foundational library for computer vision.
  • MIM: MIM Installs OpenMMLab Packages.
  • MMClassification: OpenMMLab image classification toolbox and benchmark.
  • MMDetection: OpenMMLab detection toolbox and benchmark.
  • MMDetection3D: OpenMMLab's next-generation platform for general 3D object detection.
  • MMSegmentation: OpenMMLab semantic segmentation toolbox and benchmark.
  • MMAction2: OpenMMLab's next-generation action understanding toolbox and benchmark.
  • MMTracking: OpenMMLab video perception toolbox and benchmark.
  • MMPose: OpenMMLab pose estimation toolbox and benchmark.
  • MMEditing: OpenMMLab image and video editing toolbox.
  • MMOCR: A Comprehensive Toolbox for Text Detection, Recognition and Understanding.
  • MMGeneration: OpenMMLab image and video generative models toolbox.
  • MMFlow: OpenMMLab optical flow toolbox and benchmark.
  • MMFewShot: OpenMMLab FewShot Learning Toolbox and Benchmark.
  • MMHuman3D: OpenMMLab Human Pose and Shape Estimation Toolbox and Benchmark.