摘要: 听李宏毅老师课程后有感而发:从线性函数到神经元的建立 阅读全文
posted @ 2022-09-10 16:59 YIYUYI 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 问题描述 在解决多分类问题时,常常使用softmax作为激活函数:$softmax(x_i) = \frac {e^{x_i}}{\sum _{j=1}^{n}{e^x_j}}$ 一次计算过程基本如下: def softmax(inputs): length = len(inputs) exps = 阅读全文
posted @ 2022-07-27 11:47 YIYUYI 阅读(600) 评论(0) 推荐(0) 编辑
摘要: pytorch提供mask机制用来提取数据中“感兴趣”的部分,常见的mask函数:masked_fill, masked_select, masked_scatter 阅读全文
posted @ 2022-06-14 21:19 YIYUYI 阅读(6225) 评论(0) 推荐(2) 编辑
摘要: 安装cuda11.0+cudnn8.0(还要求有一个python环境 下载git上面的openpose项目源码:要求带cmakelist 下载cmake软件 将openpose源码解压并放在合适的路径下:下载caffe和pybind11,分别解压并放在3rdparty文件夹下;分别打开models和 阅读全文
posted @ 2022-02-20 11:43 YIYUYI 阅读(794) 评论(0) 推荐(0) 编辑
摘要: DLL load failed while importing qhull 阅读全文
posted @ 2022-01-29 17:14 YIYUYI 阅读(579) 评论(0) 推荐(0) 编辑
摘要: 还是通过prompt+whl安装 共安装:cuda-深度学习包、cudnn-cuda加速包、torch、torchvision 其中注意cuda和cudnn的安装版本与电脑显卡支持有关,向下兼容 torch和torchvision有版本的对应,二者又和cuda版本有对应:torch和torchvis 阅读全文
posted @ 2022-01-28 17:48 YIYUYI 阅读(67) 评论(0) 推荐(0) 编辑
摘要: SIFT特征提取:简介、原理 阅读全文
posted @ 2022-01-21 16:52 YIYUYI 阅读(97) 评论(0) 推荐(0) 编辑
摘要: Harris角点检测 阅读全文
posted @ 2022-01-20 16:58 YIYUYI 阅读(230) 评论(0) 推荐(0) 编辑
摘要: PyCharm expired时的替代方案 阅读全文
posted @ 2022-01-18 11:22 YIYUYI 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 图像处理:图像金字塔、模板匹配 阅读全文
posted @ 2022-01-15 23:00 YIYUYI 阅读(63) 评论(0) 推荐(0) 编辑