mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-04 08:16:42 +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 | 简体中文
YOLOv7 Prepare the model for Deployment
-
YOLOv7 deployment is based on YOLOv7 branching code, and COCO Pre-Trained Models.
- (1)The *.pt provided by the Official Library can be deployed after the export ONNX model operation; *.trt and *.pose models do not support deployment.
- (2)As for YOLOv7 model trained on customized data, please follow the operations guidelines in Export ONNX model and then refer to Detailed Deployment Tutorials to complete the deployment.
Export ONNX Model
# Download yolov7 model file
wget https://github.com/WongKinYiu/yolov7/releases/download/v0.1/yolov7.pt
# Export onnx file (Tips: in accordance with YOLOv7 release v0.1 code)
python models/export.py --grid --dynamic --weights PATH/TO/yolov7.pt
# If your code supports exporting ONNX files with NMS, please use the following command to export ONNX files, then refer to the example of `yolov7end2end_ort` or `yolov7end2end_ort`
python models/export.py --grid --dynamic --end2end --weights PATH/TO/yolov7.pt
Download the pre-trained ONNX model
To facilitate testing for developers, we provide below the models exported by YOLOv7, which developers can download and use directly. (The accuracy of the models in the table is sourced from the official library)
Model | Size | Accuracy | Note |
---|---|---|---|
YOLOv7 | 141MB | 51.4% | This model file comes from YOLOv7, GPL-3.0 License |
YOLOv7x | 273MB | 53.1% | This model file comes from YOLOv7, GPL-3.0 License |
YOLOv7-w6 | 269MB | 54.9% | This model file comes from YOLOv7, GPL-3.0 License |
YOLOv7-e6 | 372MB | 56.0% | This model file comes from YOLOv7, GPL-3.0 License |
YOLOv7-d6 | 511MB | 56.6% | This model file comes from YOLOv7, GPL-3.0 License |
YOLOv7-e6e | 579MB | 56.8% | This model file comes from YOLOv7, GPL-3.0 License |
Detailed Deployment Tutorials
Version
- This tutorial and related code are written based on YOLOv7 0.1