# FastDeploy **Repository Path**: fusionshen/FastDeploy ## Basic Information - **Project Name**: FastDeploy - **Description**: โšก๏ธAn Easy-to-use and Fast Deep Learning Model Deployment Toolkit for โ˜๏ธCloud ๐Ÿ“ฑMobile and ๐Ÿ“นEdge. Including Image, Video, Text and Audio 20+ main stream scenarios and 150+ SOTA models. - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: release/1.0.2 - **Homepage**: https://www.paddlepaddle.org.cn/fastdeploy - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 38 - **Created**: 2023-01-11 - **Last Updated**: 2023-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README English | [็ฎ€ไฝ“ไธญๆ–‡](README_CN.md) | [เคนเคฟเคจเฅเคฆเฅ€](./docs/docs_i18n/README_เคนเคฟเคจเฅเคฆเฅ€.md) | [ๆ—ฅๆœฌ่ชž](./docs/docs_i18n/README_ๆ—ฅๆœฌ่ชž.md) | [ํ•œ๊ตญ์ธ](./docs/docs_i18n/README_ํ•œ๊ตญ์ธ.md) | [Pัƒฬััะบะธะน ัะทั‹ฬะบ](./docs/docs_i18n/README_Pัƒฬััะบะธะน_ัะทั‹ฬะบ.md) ![โšก๏ธFastDeploy](https://user-images.githubusercontent.com/31974251/185771818-5d4423cd-c94c-4a49-9894-bc7a8d1c29d0.png)

Installation | Documents | API Docs | Release Notes

**โšก๏ธFastDeploy** is an **Easy-to-use** and **High Performance** AI model deployment toolkit for Cloud, Mobile and Edge with ๐Ÿ“ฆ**out-of-the-box and unified experience**, ๐Ÿ”š**end-to-end optimization** for over **๐Ÿ”ฅ150+ Text, Vision, Speech and Cross-modal AI models**. Including image classification, object detection, image segmentation, face detection, face recognition, keypoint detection, matting, OCR, NLP, TTS and other tasks to meet developers' industrial deployment needs for **multi-scenario**, **multi-hardware** and **multi-platform**. | [Image Classification](examples/vision/classification) | [Object Detection](examples/vision/detection) | [Semantic Segmentation](examples/vision/segmentation/paddleseg) | [Potrait Segmentation](examples/vision/segmentation/paddleseg) | |:----------------------------------------------------------------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------------------------------------------------:|:------------------------------------------------------------------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:| | | | | | | [**Image Matting**](examples/vision/matting) | [**Real-Time Matting**](examples/vision/matting) | [**OCR**](examples/vision/ocr) | [**Face Alignment**](examples/vision/facealign) | | | | | | | [**Pose Estimation**](examples/vision/keypointdetection) | [**Behavior Recognition**](https://github.com/PaddlePaddle/FastDeploy/issues/6) | [**NLP**](examples/text) | [**Speech**](examples/audio/pp-tts) | | | | |

**input**:Life was like a box
of chocolates, you never
know what you're
gonna get.

**output**: [](https://paddlespeech.bj.bcebos.com/Parakeet/docs/demos/tacotron2_ljspeech_waveflow_samples_0.2/sentence_1.wav)

| ## ๐Ÿ“ฃ Recent updates - ๐Ÿ’ฅ **Live Preview: Dec 12 - Dec 30, China Standard Time, 20:30,** FastDeploy has joined hands with ten hardware vendor partners to launch the deployment month `The Complete Guide to Deploying Industrial Grade AI Models`. - Scan the QR code below using WeChat, follow the PaddlePaddle official account and fill out the questionnaire to join the WeChat group
## Contents * **๐Ÿ–ฅ๏ธ Server-side and Cloud Deployment** * [A Quick Start for Python SDK](#fastdeploy-quick-start-python) * [A Quick Start for C++ SDK](#fastdeploy-quick-start-cpp) * [Supported Server-side and Cloud Model List](#fastdeploy-server-models) * **๐Ÿ“ฑ Mobile and Edge Device Deployment** * [Supported Mobile and Edge Model List](#fastdeploy-edge-models) * **๐ŸŒ Browser and Mini Program Deployment** * [Supported Web and Mini Program Model List](#fastdeploy-web-models) * [Acknowledge](#fastdeploy-acknowledge) * [License](#fastdeploy-license) ## ๐Ÿ–ฅ๏ธ Server-side and Cloud Deployment
A Quick Start for Python SDK๏ผˆclick to expand๏ผ‰
#### Installation ##### Prerequisites - CUDA >= 11.2 ใ€cuDNN >= 8.0 ใ€ Python >= 3.6 - OS: Linux x86_64/macOS/Windows 10 ##### Install FastDeploy SDK with both CPU and GPU support ```bash pip install fastdeploy-gpu-python -f https://www.paddlepaddle.org.cn/whl/fastdeploy.html ``` ##### [Conda Installation (Recommended)](docs/cn/build_and_install/download_prebuilt_libraries.md) ```bash conda config --add channels conda-forge && conda install cudatoolkit=11.2 cudnn=8.2 ``` ##### Install FastDeploy SDK with only CPU support ```bash pip install fastdeploy-python -f https://www.paddlepaddle.org.cn/whl/fastdeploy.html ``` #### Python Inference Example * Prepare model and picture ```bash wget https://bj.bcebos.com/paddlehub/fastdeploy/ppyoloe_crn_l_300e_coco.tgz tar xvf ppyoloe_crn_l_300e_coco.tgz wget https://gitee.com/paddlepaddle/PaddleDetection/raw/release/2.4/demo/000000014439.jpg ``` * Test inference results ```python # For deployment of GPU/TensorRT, please refer to examples/vision/detection/paddledetection/python import cv2 import fastdeploy.vision as vision im = cv2.imread("000000014439.jpg") model = vision.detection.PPYOLOE("ppyoloe_crn_l_300e_coco/model.pdmodel", "ppyoloe_crn_l_300e_coco/model.pdiparams", "ppyoloe_crn_l_300e_coco/infer_cfg.yml") result = model.predict(im) print(result) vis_im = vision.vis_detection(im, result, score_threshold=0.5) cv2.imwrite("vis_image.jpg", vis_im) ```
A Quick Start for C++ SDK๏ผˆclick to expand๏ผ‰
#### Installation - Please refer to [C++ Prebuilt Libraries Download](docs/cn/build_and_install/download_prebuilt_libraries.md) #### C++ Inference Example * Prepare models and pictures ```bash wget https://bj.bcebos.com/paddlehub/fastdeploy/ppyoloe_crn_l_300e_coco.tgz tar xvf ppyoloe_crn_l_300e_coco.tgz wget https://gitee.com/paddlepaddle/PaddleDetection/raw/release/2.4/demo/000000014439.jpg ``` * Test inference results ```C++ // For GPU/TensorRT deployment, please refer to examples/vision/detection/paddledetection/cpp #include "fastdeploy/vision.h" int main(int argc, char* argv[]) { namespace vision = fastdeploy::vision; auto im = cv::imread("000000014439.jpg"); auto model = vision::detection::PPYOLOE("ppyoloe_crn_l_300e_coco/model.pdmodel", "ppyoloe_crn_l_300e_coco/model.pdiparams", "ppyoloe_crn_l_300e_coco/infer_cfg.yml"); vision::DetectionResult res; model.Predict(&im, &res); auto vis_im = vision::VisDetection(im, res, 0.5); cv::imwrite("vis_image.jpg", vis_im); return 0; } ```
For more deployment models, please refer to [Vision Model Deployment Examples](examples/vision) .
### Server-side and Cloud Model List๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ Notes: โœ…: already supported; โ”: to be supported in the future; N/A: Not Available;
Server-side and Cloud Model List๏ผˆclick to fold๏ผ‰
| Task | Model | Linux | Linux | Win | Win | Mac | Mac | Linux | Linux | Linux | Linux | Linux | Linux |Linux | |:----------------------:|:--------------------------------------------------------------------------------------------:|:------------------------------------------------:|:----------:|:-------:|:----------:|:-------:|:-------:|:-----------:|:---------------:|:-------------:|:-------------:|:-------:|:-------:|:-------:| | --- | --- | X86 CPU | NVIDIA GPU | X86 CPU | NVIDIA GPU | X86 CPU | Arm CPU | AArch64 CPU | Phytium D2000CPU | [NVIDIA Jetson](./docs/cn/build_and_install/jetson.md) | [Graphcore IPU](./docs/cn/build_and_install/ipu.md) | [KunlunXin XPU](./docs/cn/build_and_install/kunlunxin.md) |[Huawei Ascend](./docs/en/build_and_install/huawei_ascend.md) | [Serving](./serving) | | Classification | [PaddleClas/ResNet50](./examples/vision/classification/paddleclas) | [โœ…](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | | Classification | [TorchVison/ResNet](examples/vision/classification/resnet) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โœ… | โ” | | Classification | [ltralytics/YOLOv5Cls](examples/vision/classification/yolov5cls) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” |โ” | | Classification | [PaddleClas/PP-LCNet](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/PP-LCNetv2](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/EfficientNet](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/GhostNet](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/MobileNetV1](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/MobileNetV2](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/MobileNetV3](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/ShuffleNetV2](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/SqueeezeNetV1.1](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Classification | [PaddleClas/Inceptionv3](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โœ… | โœ… | | Classification | [PaddleClas/PP-HGNet](./examples/vision/classification/paddleclas) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… |โœ… | โœ… | | Detection | [PaddleDetection/PP-YOLOE](./examples/vision/detection/paddledetection) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โœ… | โœ… | | Detection | [PaddleDetection/PicoDet](./examples/vision/detection/paddledetection) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โœ… | | Detection | [PaddleDetection/YOLOX](./examples/vision/detection/paddledetection) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โœ… | โœ… | | Detection | [PaddleDetection/YOLOv3](./examples/vision/detection/paddledetection) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โœ… | โœ… | | Detection | [PaddleDetection/PP-YOLO](./examples/vision/detection/paddledetection) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โœ… | โœ… | | Detection | [PaddleDetection/PP-YOLOv2](./examples/vision/detection/paddledetection) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โœ… | โœ… | | Detection | [PaddleDetection/Faster-RCNN](./examples/vision/detection/paddledetection) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โ” | โœ… | | Detection | [PaddleDetection/Mask-RCNN](./examples/vision/detection/paddledetection) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โ” | โœ… | | Detection | [Megvii-BaseDetection/YOLOX](./examples/vision/detection/yolox) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โœ… | โ” | | Detection | [WongKinYiu/YOLOv7](./examples/vision/detection/yolov7) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โœ… | โ” | | Detection | [WongKinYiu/YOLOv7end2end_trt](./examples/vision/detection/yolov7end2end_trt) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” |โ” | โ” | | Detection | [WongKinYiu/YOLOv7end2end_ort_](./examples/vision/detection/yolov7end2end_ort) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” |โ” | โ” | | Detection | [meituan/YOLOv6](./examples/vision/detection/yolov6) | โœ… | โœ… | โœ… |โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | | Detection | [ultralytics/YOLOv5](./examples/vision/detection/yolov5) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โœ… |โœ… | | Detection | [WongKinYiu/YOLOR](./examples/vision/detection/yolor) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” | โœ… | โ” | | Detection | [WongKinYiu/ScaledYOLOv4](./examples/vision/detection/scaledyolov4) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” |โ” | โ” | | Detection | [ppogg/YOLOv5Lite](./examples/vision/detection/yolov5lite) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | ? | โ” |โ” |โ” | | Detection | [RangiLyu/NanoDetPlus](./examples/vision/detection/nanodet_plus) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” |โ” | โ” | | KeyPoint | [PaddleDetection/TinyPose](./examples/vision/keypointdetection/tiny_pose) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โ” | โ” | | KeyPoint | [PaddleDetection/PicoDet + TinyPose](./examples/vision/keypointdetection/det_keypoint_unite) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” |โ” | | HeadPose | [omasaht/headpose](examples/vision/headpose) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” | โ” |โ” | | Tracking | [PaddleDetection/PP-Tracking](examples/vision/tracking/pptracking) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” |โ” | | OCR | [PaddleOCR/PP-OCRv2](./examples/vision/ocr) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โœ… |โœ… | โ” | | OCR | [PaddleOCR/PP-OCRv3](./examples/vision/ocr) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โœ… | โœ… | | Segmentation | [PaddleSeg/PP-LiteSeg](./examples/vision/segmentation/paddleseg) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โœ… |โ” | โ” | | Segmentation | [PaddleSeg/PP-HumanSegLite](./examples/vision/segmentation/paddleseg) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โœ… |โœ… | โ” | | Segmentation | [PaddleSeg/HRNet](./examples/vision/segmentation/paddleseg) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โœ… | โœ… |โ” | | Segmentation | [PaddleSeg/PP-HumanSegServer](./examples/vision/segmentation/paddleseg) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โœ… | โœ… |โ” | | Segmentation | [PaddleSeg/Unet](./examples/vision/segmentation/paddleseg) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โœ… | โœ… | โœ… |โ” | | Segmentation | [PaddleSeg/Deeplabv3](./examples/vision/segmentation/paddleseg) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โœ… | โœ… |โ” | | FaceDetection | [biubug6/RetinaFace](./examples/vision/facedet/retinaface) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” | โ” | | FaceDetection | [Linzaer/UltraFace](./examples/vision/facedet/ultraface) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” |โ” | | FaceDetection | [deepcam-cn/YOLOv5Face](./examples/vision/facedet/yolov5face) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” |โ” | | FaceDetection | [insightface/SCRFD](./examples/vision/facedet/scrfd) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” |โ” | | FaceAlign | [Hsintao/PFLD](examples/vision/facealign/pfld) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” |โ” | | FaceAlign | [Single430/FaceLandmark1000](./examples/vision/facealign/face_landmark_1000) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” | โ” | โ” | | FaceAlign | [jhb86253817/PIPNet](./examples/vision/facealign) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” | โ” |โ” | | FaceRecognition | [insightface/ArcFace](./examples/vision/faceid/insightface) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” |โ” | | FaceRecognition | [insightface/CosFace](./examples/vision/faceid/insightface) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” |โ” | | FaceRecognition | [insightface/PartialFC](./examples/vision/faceid/insightface) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” | โ” | | FaceRecognition | [insightface/VPL](./examples/vision/faceid/insightface) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” | โ” | | Matting | [ZHKKKe/MODNet](./examples/vision/matting/modnet) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” | โ” |โ” | | Matting | [PeterL1n/RobustVideoMatting]() | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” | โ” | โ” | | Matting | [PaddleSeg/PP-Matting](./examples/vision/matting/ppmatting) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โœ… | โ” | | Matting | [PaddleSeg/PP-HumanMatting](./examples/vision/matting/modnet) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… |โœ… |โ” | | Matting | [PaddleSeg/ModNet](./examples/vision/matting/modnet) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” |โ” | โ” | | Video Super-Resolution | [PaddleGAN/BasicVSR](./) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” | โ” |โ” | | Video Super-Resolution | [PaddleGAN/EDVR](./examples/vision/sr/edvr) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” |โ” | โ” | | Video Super-Resolution | [PaddleGAN/PP-MSVSR](./examples/vision/sr/ppmsvsr) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” |โ” | โ” | | Information Extraction | [PaddleNLP/UIE](./examples/text/uie) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โœ… | โ” | โ” |โ” | | | NLP | [PaddleNLP/ERNIE-3.0](./examples/text/ernie-3.0) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | โ” | โœ… |โ” | โœ… | | Speech | [PaddleSpeech/PP-TTS](./examples/audio/pp-tts) | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โœ… | โ” | โ” | -- |โ” |โ” | โœ… |
## ๐Ÿ“ฑ Mobile and Edge Device Deployment
### Mobile and Edge Model List ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ
Mobile and Edge Model List๏ผˆclick to fold๏ผ‰
| Task | Model | Size (MB) | Linux | Android | Linux | Linux | Linux | Linux | TBD... | |:------------------:|:----------------------------------------------------------------------------------------:|:---------:|:-------:|:-------:|:-----------------------------:|:------------------------------------:|:---------------------------------:|:---------------------------------:|:-------:| | --- | --- | --- | ARM CPU | [ARM CPU](./java/android) | [Rockchip-NPU
RK3568/RK3588](./docs/en/build_and_install/a311d.md) | [Rockchip-NPU
RV1109/RV1126/RK1808](./docs/en/build_and_install/rv1126.md) | [Amlogic-NPU
A311D/S905D/C308X](./docs/en/build_and_install/a311d.md) | NXP-NPU
i.MX 8M Plus | TBD...๏ฝœ | | Classification | [PaddleClas/ResNet50](examples/vision/classification/paddleclas) | 98 | โœ… | โœ… | [โœ…](./examples/vision/classification/paddleclas/rknpu2) | โœ… | | | | | Classification | [PaddleClas/PP-LCNet](examples/vision/classification/paddleclas) | 11.9 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/PP-LCNetv2](examples/vision/classification/paddleclas) | 26.6 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/EfficientNet](examples/vision/classification/paddleclas) | 31.4 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/GhostNet](examples/vision/classification/paddleclas) | 20.8 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/MobileNetV1](examples/vision/classification/paddleclas) | 17 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/MobileNetV2](examples/vision/classification/paddleclas) | 14.2 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/MobileNetV3](examples/vision/classification/paddleclas) | 22 | โœ… | โœ… | โ” | โœ… | โ” | โ” | -- | | Classification | [PaddleClas/ShuffleNetV2](examples/vision/classification/paddleclas) | 9.2 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/SqueezeNetV1.1](examples/vision/classification/paddleclas) | 5 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/Inceptionv3](examples/vision/classification/paddleclas) | 95.5 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Classification | [PaddleClas/PP-HGNet](examples/vision/classification/paddleclas) | 59 | โœ… | โœ… | โ” | โœ… | -- | -- | -- | | Detection | [PaddleDetection/PicoDet_s](examples/vision/detection/paddledetection) | 4.9 | โœ… | โœ… | [โœ…](./examples/vision/detection/paddledetection/rknpu2) | โœ… | โœ… | โœ… | -- | | Detection | [YOLOv5](./examples/vision/detection/rkyolo) | | โ” | โ” | [โœ…](./examples/vision/detection/rkyolo) | โ” | โ” | โ” | -- | | Face Detection | [deepinsight/SCRFD](./examples/vision/facedet/scrfd) | 2.5 | โœ… | โœ… | [โœ…](./examples/vision/facedet/scrfd/rknpu2) | -- | -- | -- | -- | | Keypoint Detection | [PaddleDetection/PP-TinyPose](examples/vision/keypointdetection/tiny_pose) | 5.5 | โœ… | โœ… | โ” | โ” | โ” | โ” | -- | | Segmentation | [PaddleSeg/PP-LiteSeg(STDC1)](examples/vision/segmentation/paddleseg) | 32.2 | โœ… | โœ… | [โœ…](./examples/vision/segmentation/paddleseg/rknpu2) | -- | -- | -- | -- | | Segmentation | [PaddleSeg/PP-HumanSeg-Lite](examples/vision/segmentation/paddleseg) | 0.556 | โœ… | โœ… | [โœ…](./examples/vision/segmentation/paddleseg/rknpu2) | -- | -- | -- | -- | | Segmentation | [PaddleSeg/HRNet-w18](examples/vision/segmentation/paddleseg) | 38.7 | โœ… | โœ… | [โœ…](./examples/vision/segmentation/paddleseg/rknpu2) | -- | -- | -- | -- | | Segmentation | [PaddleSeg/PP-HumanSeg](examples/vision/segmentation/paddleseg) | 107.2 | โœ… | โœ… | [โœ…](./examples/vision/segmentation/paddleseg/rknpu2) | -- | -- | -- | -- | | Segmentation | [PaddleSeg/Unet](examples/vision/segmentation/paddleseg) | 53.7 | โœ… | โœ… | [โœ…](./examples/vision/segmentation/paddleseg/rknpu2) | -- | -- | -- | -- | | Segmentation | [PaddleSeg/Deeplabv3](examples/vision/segmentation/paddleseg) | 150 | โ” | โœ… | [โœ…](./examples/vision/segmentation/paddleseg/rknpu2) | | | | | | OCR | [PaddleOCR/PP-OCRv2](examples/vision/ocr/PP-OCRv2) | 2.3+4.4 | โœ… | โœ… | โ” | -- | -- | -- | -- | | OCR | [PaddleOCR/PP-OCRv3](examples/vision/ocr/PP-OCRv3) | 2.4+10.6 | โœ… | โ” | โ” | โ” | โ” | โ” | -- |
## ๐ŸŒ Browser-based Model List
Browser-based Model List๏ผˆclick to fold๏ผ‰
| Task | Model | [web_demo](examples/application/js/web_demo) | |:------------------:|:-------------------------------------------------------------------------------------------:|:--------------------------------------------:| | --- | --- | [Paddle.js](examples/application/js) | | Detection | [FaceDetection](examples/application/js/web_demo/src/pages/cv/detection) | โœ… | | Detection | [ScrewDetection](examples/application/js/web_demo/src/pages/cv/detection) | โœ… | | Segmentation | [PaddleSeg/HumanSeg](./examples/application/js/web_demo/src/pages/cv/segmentation/HumanSeg) | โœ… | | Object Recognition | [GestureRecognition](examples/application/js/web_demo/src/pages/cv/recognition) | โœ… | | Object Recognition | [ItemIdentification](examples/application/js/web_demo/src/pages/cv/recognition) | โœ… | | OCR | [PaddleOCR/PP-OCRv3](./examples/application/js/web_demo/src/pages/cv/ocr) | โœ… |
## ๐Ÿ‘ฌ Community - **Slack**๏ผšJoin our [Slack community](https://join.slack.com/t/fastdeployworkspace/shared_invite/zt-1jznah134-3rxY~ytRb8rcPqkn9g~PDg) and chat with other community members about ideas. - **WeChat**๏ผšScan the QR code below using WeChat, follow the PaddlePaddle official account and fill out the questionnaire to join the WeChat group.
## Acknowledge
We sincerely appreciate the open-sourced capabilities in [EasyEdge](https://ai.baidu.com/easyedge/app/openSource) as we adopt it for the SDK generation and download in this project. ## License
FastDeploy is provided under the [Apache-2.0](./LICENSE).