会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
swan1024
博客园
首页
新随笔
联系
订阅
管理
2021年3月19日
FaceNet中人脸检测部分代码总结
摘要: 前言:课题需要使用facenet,但是不想用自带的mtcnn检测网络,想要替换成别的。写这篇文章记录一下源码分析过程。 1. 初步 人脸检测流程中,首先获取到照片之后,需要对人脸位置进行定位,之后裁剪对齐放到人脸识别模型中。所以在 faces = face_recognition.identify(
阅读全文
posted @ 2021-03-19 16:06 swan1024
阅读(112)
评论(0)
推荐(0)
2021年3月15日
常用的Anaconda命令
摘要: 当做备忘录 新建新的虚拟环境并启用 conda create -n facenet python=3.8.5 -y conda activate facenet 安装Pytorch conda install pytorch torchvision -c pytorch 根据requirements
阅读全文
posted @ 2021-03-15 10:46 swan1024
阅读(81)
评论(0)
推荐(0)
2021年3月12日
2021年安装FaceNet遇到的麻烦及解决办法
摘要: 2021年安装FaceNet遇到的麻烦及解决办法 目前的课题需要使用到facenet这个人脸识别模型,记录一下安装运行时遇到的问题。 TensorFlow 1.7 安装问题 我用的anaconda环境,配置的虚拟环境用的Python3.5,可是不巧的是,今年开始,pycharm不再支持python3
阅读全文
posted @ 2021-03-12 22:06 swan1024
阅读(467)
评论(0)
推荐(0)
2020年7月27日
2020版jetbrain全家桶markdown预览乱码问题解决办法
摘要: jetbrain全家桶markdown预览乱码解决
阅读全文
posted @ 2020-07-27 10:34 swan1024
阅读(741)
评论(0)
推荐(0)
2020年7月8日
Hyperledger Fabric 2.1 搭建教程
摘要: Hyperledger Fabric 2.1 搭建教程 环境准备 版本 Ubuntu 18.04 go 1.14.4 fabric 2.1 fabric-sample v1.4.4 nodejs 12.18.2 Docker 安装 卸载旧版本 sudo apt-get remove docker d
阅读全文
posted @ 2020-07-08 10:05 swan1024
阅读(1298)
评论(0)
推荐(2)
2020年6月22日
Error: error getting chaincode bytes: failed to calculate dependencies报错解决办法
摘要: Error: error getting chaincode bytes: failed to calculate dependencies: incomplete package: github.com/hyperledger/fabric-contract-api-go/contractapi
阅读全文
posted @ 2020-06-22 20:47 swan1024
阅读(1008)
评论(0)
推荐(0)
2020年5月27日
Deno 学习笔记(1)安装及简单的request
摘要: Deno下载和安装 PowerShell iwr https://deno.land/x/install/install.ps1 -useb | iex Shell curl -fsSL https://deno.land/x/install/install.sh | sh Deno 升级 deno
阅读全文
posted @ 2020-05-27 10:24 swan1024
阅读(443)
评论(0)
推荐(0)
2020年5月11日
记录一下安装hexo的过程
摘要: 记录一下安装hexo的过程 安装node 首先你的电脑需要安装node.js和Git 安装git 安装好Git之后需要配置本机与Github之间的ssh方便更新同步博客到Github上,在一个地方新建一个文件夹作为我们博客的根目录,在文件夹内右键选择Git bash here git config
阅读全文
posted @ 2020-05-11 09:57 swan1024
阅读(269)
评论(0)
推荐(0)
SpringBoot集成MyBatis小记
摘要: SpringBoot集成MyBatis小记 "参考MyBatis官网" 1. 添加maven依赖 添加到pom.xml 2. 配置MySQL连接 编辑application.properties这个文件,我用的xampp中的MySQL所以root密码为空,我的数据库名字叫"discuss" 到此为止
阅读全文
posted @ 2020-05-11 09:53 swan1024
阅读(154)
评论(0)
推荐(0)
SimpleImputer 中fit和transform方法的简介
摘要: " " .SimpleImputer 中fit和transform方法的简介 SimpleImputer 简介 通过SimpleImputer ,可以将现实数据中缺失的值通过同一列的均值、中值、或者众数补充起来,这里用均值举例。 fit方法 通过fit方法可以计算矩阵缺失的相关值的大小,以便填充其他
阅读全文
posted @ 2020-05-11 09:30 swan1024
阅读(3098)
评论(0)
推荐(0)
下一页
公告