mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-04 16:22:57 +08:00

* 第一次提交 * 补充一处漏翻译 * deleted: docs/en/quantize.md * Update one translation * Update en version * Update one translation in code * Standardize one writing * Standardize one writing * Update some en version * Fix a grammer problem * Update en version for api/vision result * Merge branch 'develop' of https://github.com/charl-u/FastDeploy into develop * Checkout the link in README in vision_results/ to the en documents * Modify a title * Add link to serving/docs/ * Finish translation of demo.md * Update english version of serving/docs/ * Update title of readme * Update some links * Modify a title * Update some links * Update en version of java android README * Modify some titles * Modify some titles * Modify some titles * modify article to document * update some english version of documents in examples * Add english version of documents in examples/visions * Sync to current branch * Add english version of documents in examples * Add english version of documents in examples * Add english version of documents in examples * Update some documents in examples * Update some documents in examples * Update some documents in examples * Update some documents in examples * Update some documents in examples * Update some documents in examples * Update some documents in examples * Update some documents in examples * Update some documents in examples
English | 简体中文
YOLOv7End2EndORT Ready-to-deploy Model
The YOLOv7End2EndORT deployment is based on YOLOv7branch code and Pre-trained Model Based on COCO. Attention: YOLOv7End2EndORT is designed for the inference of exported End2End models in the ORT_NMS version in YOLOv7. YOLOv7 class is for the inference of models without nms. YOLOv7End2EndTRT is for the inference of End2End models in the TRT_NMS version.
- (1)*.pt provided by Official Repository should Export the ONNX Model to complete the employment. The deployment of *.trt and *.pose models is not supported.
- (2)The YOLOv7 model trained by personal data should Export the ONNX Model. Refer to Detailed Deployment Documents to complete the deployment.
Export the ONNX Model
# Download yolov7 model files
wget https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7.pt
# Export files in onnx format with ORT_NMS (Tips: Corresponding to the code of YOLOv7 release v0.1)
python export.py --weights yolov7.pt --grid --end2end --simplify --topk-all 100 --iou-thres 0.65 --conf-thres 0.35 --img-size 640 640 --max-wh 640
# The commands for exporting other models are similar Replace yolov7.pt with yolov7x.pt yolov7-d6.pt yolov7-w6.pt ...
Download the Pre-trained ONNX Model
For developers' testing, models exported by YOLOv7End2EndORT are provided below. Developers can download them directly. (The accuracy in the following table is derived from the source official repository)
Model | Size | Accuracy | Note |
---|---|---|---|
yolov7-end2end-ort-nms | 141MB | 51.4% | This model file is sourced from YOLOv7,GPL-3.0 License |
yolov7x-end2end-ort-nms | 273MB | 53.1% | This model file is sourced from YOLOv7,GPL-3.0 License |
yolov7-w6-end2end-ort-nms | 269MB | 54.9% | This model file is sourced from YOLOv7,GPL-3.0 License |
yolov7-e6-end2end-ort-nms | 372MB | 56.0% | This model file is sourced from YOLOv7,GPL-3.0 License |
yolov7-d6-end2end-ort-nms | 511MB | 56.6% | This model file is sourced from YOLOv7,GPL-3.0 License |
yolov7-e6e-end2end-ort-nms | 579MB | 56.8% | This model file is sourced from YOLOv7,GPL-3.0 License |
Detailed Deployment Documents
Release Note
- Document and code are based on YOLOv7 0.1