码农知识堂 - 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
  • 相关阅读:
    python学习笔记——字符串
    React【axios、全局处理、 antd UI库、更改主题、使用css module的情况下修改第三方库的样式、支持sass & less】(十三)
    莫队
    Object.is() 和 == 的区别
    支持5G WIFI的串口服务器
    C#代码审计实战+前置知识
    升级MacOS(Mojave)后使用git问题
    盲盒商城源码 盲盒开箱源码 潮物盲盒商城源码 仿CSGO盲盒开箱源码
    各种业务场景调用API代理的API接口教程
    Redis之golang编程实战
  • 原文地址:https://blog.csdn.net/qq_15821487/article/details/125991510
  • 最新文章
  • 【JVM】编译执行与解释执行的区别是什么?JVM 使用哪种方式?
    用 Hashids 优雅解决 C 端自增 ID 暴露问题
    V8引擎 精品漫游指南--Ignition篇(上) 指令 栈帧 槽位 调用约定 内存布局 基础内容
    LLVM Pass快速入门(四):代码插桩
    milkup:桌面端 markdown AI续写和即时渲染
    基于项目工程构建SBOM(软件物料清单)的研究
    鸿蒙应用开发UI基础第二节:鸿蒙应用程序框架核心解析与实操
    .NET 中如何快速实现 List 集合去重?
    扣子Coze实战:从0到1打造抖音+小红书热点监控智能体
    浅谈数据访问层
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号