You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
974 B
33 lines
974 B
1 year ago
|
### 1、官网
|
||
|
https://pypi.org/project/insightface/
|
||
|
|
||
|
### 2、安装依赖包
|
||
|
```c++
|
||
|
pip install insightface onnxruntime-gpu onnxruntime
|
||
|
```
|
||
|
|
||
|
### 3、步骤
|
||
|
(1) buffalo_l 模型下载位置
|
||
|
```c++
|
||
|
https://github.com/deepinsight/insightface/releases
|
||
|
```
|
||
|
|
||
|
(2) 下载的模型buffalo_l 以文件夹形式存放在
|
||
|
|
||
|
```c++
|
||
|
C:\Users\Administrator\.insightface\models\buffalo_l 的目录
|
||
|
2024/06/11 11:10 <DIR> .
|
||
|
2024/06/11 11:10 <DIR> ..
|
||
|
2021/09/20 11:49 143,607,619 1k3d68.onnx
|
||
|
2021/09/20 11:49 5,030,888 2d106det.onnx
|
||
|
2021/09/20 11:49 16,923,827 det_10g.onnx
|
||
|
2021/09/20 11:49 1,322,532 genderage.onnx
|
||
|
2021/09/20 19:28 174,383,860 w600k_r50.onnx
|
||
|
5 个文件 341,268,726 字节
|
||
|
2 个目录 28,056,035,328 可用字节
|
||
|
```
|
||
|
|
||
|
### 4、参考文档
|
||
|
https://blog.csdn.net/zml194849/article/details/123201131
|
||
|
按照python-packpage中的readme进行操作
|