目标检测
目标检测参考:https://www.cnblogs.com/yege/p/17355384.html#2One_Stage_50https://blog.csdn.net/weixin_43981621/article/details/120127926罗会兰, 陈鸿坤. 基于深度学习的目标检测研究综述[J]. 电子学报, 2020, 48(6): 1230-1239. https://doi.org/10.3969/j.issn.0372-2112.2020.06.026 基础概念目标检测(object detection):找出图像中所有感兴趣的目标,确定他们的类别和位置。 分类从检测内容上可分为: 单目标侦测 对单张图片进行分类 单类别多目标侦测 检测多个同类目标,主要需要输出目标位置信息 多类别多目标侦测 检测多个异类目标,需要输出目标类型及目标位置信息 从算法类型上可分为: two stage 基于候选区域 先找预选框 region proposal(简称RP,一个有可能包含待检物体的预选框),再通过卷积神经网络进行样本分类。 任务流程:特征提取...
图像分割
...
Hexo+Github创建自己的blog
参考 https://blog.fiveth.cc/p/bb32/ https://butterfly.js.org/posts/21cfbf15/ 基础Blog搭建1.环境搭建 node.js git启动终端控制台 输入node -vnpm -vgit -v 2.安装hexonpm install hexo-cli -g(如果安装失败可以以管理员模型启动cmd mac是在命令行前加上sudo)然后输入你电脑的password 就会开始下载 3.构建github仓库在github中Create a new repository,也就是创建一个新的仓库,这里需要注意的是仓库名必须和用户名一致为:用户名.github.io 这也就是之后你hexo博客的网址。 4.生成ssh keys同样是打开终端输入(如果不成功同样选择在前面加上sudo)ssh-keygen -t rsa -C “邮件地址” 然后敲4次Enter 然后进入.ssh文件打开里面的id_rsa.pub,全选复制里面的代码 然后打开github 进入用户设置,找到SSH keys 新建SSH...
优化器与损失函数
epoch和batch_size的选择 epoch的作用在于逐步提高模型的精度,直到达到一个相对稳定的水平。 batch size过小会导致模型训练过程不稳定,容易受到噪声数据干扰;而batch size过大则会导致模型训练时间过长。但batch...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment