码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • 人脸识别5.1- insightface人脸检测模型训练实战笔记


    1、 insightface/ detection / scrfd模型训练

    1.0、数据集

    数据集下载说明:https://github.com/deepinsight/insightface/tree/master/detection/datasets

    官方下载目录:http://shuoyang1213.me/WIDERFACE/
    在这里插入图片描述
    标签下载:https://gitee.com/link?target=https%3A%2F%2Fdrive.google.com%2Ffile%2Fd%2F1UW3KoApOhusyqSHX96yEDRYiNkd3Iv3Z%2Fview%3Fusp%3Dsharing

    飞桨数据集和标签整体打包下载:https://aistudio.baidu.com/aistudio/datasetdetail/157445

    1.1、安装

    1.1.0、虚拟环境安装

    Linux-Centos7下安装Anaconda,conda 安装虚拟环境,cuda,cudnn

    1.1.1、pytorch安装

    不同的cuda版本用不同的安装方式,查找历史版本:pytorch安装参考

    pip install torch==1.7.1+cu101 torchvision==0.8.2+cu101 torchaudio==0.7.2 -f https://download.pytorch.org/whl/torch_stable.html
    
    • 1
    import torch
    print(torch.__version__)  # '1.7.0'
    print(torch.version.cuda)  # 10.2
    torch.cuda.is_available() # False
    
    • 1
    • 2
    • 3
    • 4

    1.1.2、mmcv安装

    mmcv安装参考和cuda以及pytorch相匹配:https://mmcv.readthedocs.io/en/latest/get_started/installation.html

    pip install -U openmim
    mim install mmcv-full==1.3.17 -f https://download.openmmlab.com/mmcv/dist/cu101/torch1.7.0/index.html
    
    • 1
    • 2
    pip install mmdet -f https://download.openmmlab.com/mmcv/dist/cu101/torch1.7.0/index.html
    
    • 1

    1.1.3、整体编译安装

    git clone https://gitee.com/AI-Mart/insightface.git
    
    • 1
    cd insightface/detection/scrfd
    或者
    cd /data/mart/face_insightface/insightface/detection/scrfd
    
    • 1
    • 2
    • 3
    pip install -r requirements/build.txt
    pip install -v -e .  # or "python setup.py develop"
    pip install scipy
    
    • 1
    • 2
    • 3

    1.2、训练

    python ./tools/train.py ./configs/scrfd/scrfd_1g.py --gpus=1
    
    • 1
    nohup python ./tools/train.py ./configs/scrfd/scrfd_1g.py --gpus=1 2>&1 &
    tail -f nohup.out
    
    • 1
    • 2
  • 相关阅读:
    cocos creator项目构建问题
    【JavaScript进阶之旅 ES6篇 第十章】操作原型的方法、super、4种遍历方式、Symbol
    pyqt5将yolo识别视频保存
    数据结构 图
    MySQL连接不上,unkown error,docker容器部署MySQL连不上
    Hadoop生产调优
    gerrit系统如何配置访问控制
    基于自适应启动策略的混合交叉动态约束多目标优化算法(MC-DCMOEA)求解CEC2015/CEC2018/CEC2023(MATLAB代码)
    苗大东:京东基于强化学习的电商搜索排序算法
    vue实现响应式改变scss样式
  • 原文地址:https://blog.csdn.net/qq_15821487/article/details/125991510
  • 最新文章
  • 沪漂五周年了:我越来越迷茫了
    Agentic Skill Routing 实战:别再把所有 Skill 塞进 AI Agent 上下文
    MySQL-Seconds_behind_master的精度误差
    [MAF预定义ChatClient中间件-03]CachingChatClient——利用缓存省钱省时间
    AI的至暗历史:从万众期待到被政府撤资,AI的两次死亡徘徊
    Agent OS :五种驯服不确定性的范式
    PortSwigger SQL注入LAB11
    数据库即时编译JIT
    [Begin]AI Learn Data Day 0
    深度学习进阶(二十七)现代 LLM 的核心架构设计其二:SwiGLU
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号