mirror of
https://github.com/PaddlePaddle/FastDeploy.git
synced 2025-10-10 11:00:19 +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
3.4 KiB
3.4 KiB
English | 简体中文
InsightFace Ready-to-deploy Model
- InsightFace
- (1)The *.pt provided by the Official Library can be deployed after the Export ONNX Model;
- (2)As for InsightFace model trained on customized data, please follow the operations guidelines in Export ONNX Model to complete the deployment.
List of Supported Models
Now FastDeploy supports the deployment of the following models
- ArcFace
- CosFace
- PartialFC
- VPL
Export ONNX Model
Taking ArcFace as an example:
Visit ArcFace official github repository, follow the guidelines to download pt model files, and employ torch2onnx.py
to get the file in onnx
format.
-
Download ArcFace model files
Link: https://pan.baidu.com/share/init?surl=CL-l4zWqsI1oDuEEYVhj-g code: e8pw
-
Export files in onnx format
PYTHONPATH=. python ./torch2onnx.py ms1mv3_arcface_r100_fp16/backbone.pth --output ms1mv3_arcface_r100.onnx --network r100 --simplify 1
Download Pre-trained ONNX Model
For developers' testing, models exported by InsightFace are provided below. Developers can download and use them directly. (The accuracy of the models in the table is sourced from the official library) The accuracy metric is sourced from the model description in InsightFace. Refer to the introduction in InsightFace for more details.
Model | Size | Accuracy (AgeDB_30) |
---|---|---|
CosFace-r18 | 92MB | 97.7 |
CosFace-r34 | 131MB | 98.3 |
CosFace-r50 | 167MB | 98.3 |
CosFace-r100 | 249MB | 98.4 |
ArcFace-r18 | 92MB | 97.7 |
ArcFace-r34 | 131MB | 98.1 |
ArcFace-r50 | 167MB | - |
ArcFace-r100 | 249MB | 98.4 |
ArcFace-r100_lr0.1 | 249MB | 98.4 |
PartialFC-r34 | 167MB | - |
PartialFC-r50 | 249MB | - |
Detailed Deployment Tutorials
Release Note
- This tutorial and related code are written based on InsightFace CommitID:babb9a5