python onnxruntime 安装问题

安装 pip3 install onnxruntime --user 会报错找不到对应的版本。 python3 -m pip install --upgrade pip 更新 pip,结果报错 Permission denied: '/usr/bin/pip'。 python3 -m pip ...

人脸识别

原理 主要过程 人脸检测 特征提取 人脸识别

人脸检测

主要方法 基于知识的检测方法:检测器官特征和器官之间的几何关系。主要利用先验知识将人脸看作器官特征的组合,根据眼睛、眉毛、嘴巴、鼻子等器官的特征以及相互之间的几何位置关系来检测人脸。 主要的检测方法:模板匹配,人脸特征,形状与边缘,纹理特征,颜色特征。 基于统计的检测方法:像素相似性度量...

[转] 卷积神经网络详解

转自: https://zhuanlan.zhihu.com/p/26954569?utm_source=qq&utm_medium=social https://ujjwalkarn.me/2016/08/11/intuitive-explanation-convnets/ 伊晓强 讲卷积神...

深度学习资料收集

最全资料:https://github.com/Mikoto10032/DeepLearning https://github.com/zhanggyb/nndl CNN学习资料: https://ujjwalkarn.me/2016/08/09/quick-intro-neural-netw...

torch 学习笔记

1. torch.Tensor 生成一个 tensor 类型。 >>> import torch >>> x=torch.Tensor([[1,2,3],[4,5,6]]) >>> x tensor([[1., 2., 3.], ...

onnx 学习笔记

1. .SessionOptions 生成一个配置, 打印 log 的多少:0:Verbose, 1:Info, 2:Warning. 3:Error, 4:Fatal. Default is 2. sess_config = ort.SessionOptions() sess_config....

深度学习

环境 安装 tensorflow,使用命令 pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow --user 如果使用虚拟机,不适用 gpu ,可以安装 cpu 版本的 tensorflow-cpu,使用命令...

MobileNetV2-SSDLite

参考: https://ai.googleblog.com/2018/04/mobilenetv2-next-generation-of-on.html https://heartbeat.fritz.ai/real-time-object-detection-using-ssd-mobile...

tensorflow lite c++

1. 先 git clone tensorflow 的仓库,可以在 github 也可以在 gitee, gitee 会比 github 慢一天左右。但是下载速度快多了。 git clone https://github.com/tensorflow/tensorflow.git git cl...