上一页 1 2 3 4 5 6 ··· 18 下一页
摘要: ResNext 改进点 改进了Block 准确率的提高 在计算量相同的情况下,错误率更低 使用了分组卷积 普通卷积 上图为普通卷积示意图,为方便理解,途中只有一个卷积核,此时输入输出数据集为:输入特征图尺寸:$W\times H\times C$**,分别对应特征图的宽、高和通道数单个卷积核尺寸:$ 阅读全文
posted @ 2022-08-30 10:36 里列昂遗失的记事本 阅读(94) 评论(0) 推荐(1) 编辑
摘要: ResNet详解 ResNet在2015年由微软实验室提出,斩获当年ImageNet竞赛中分类任务第一名,目标检测第一名。获得COCO数据集中目标检测第一名,图像分割第一名。模型中的亮点: 超深的网络结构 提出Residual模块 使用Batch Normalization加速训练(丢弃Dropou 阅读全文
posted @ 2022-08-28 22:41 里列昂遗失的记事本 阅读(196) 评论(0) 推荐(1) 编辑
摘要: GoogLeNet 简介 GoogLeNet在2014年由Google团队提出,斩获当年ImageNet竞赛中Classification Task (分类任务) 第一名。 GoogLeNet网络的优点 引入了Inception结构(融合不同尺度的特征信息) 使用$1\times1$的卷积核进行降维 阅读全文
posted @ 2022-08-13 11:42 里列昂遗失的记事本 阅读(124) 评论(0) 推荐(1) 编辑
摘要: VGGNet简介 VGG在2014年由牛津大学著名研究组VGG (Visual GeometryGroup) 提出,斩获该年ImageNet竞赛中 Localization Task (定位任务) 第一名 和 Classification Task (分类任务) 第二名。 VGG结构 网络中的亮点: 阅读全文
posted @ 2022-07-29 00:44 里列昂遗失的记事本 阅读(127) 评论(0) 推荐(1) 编辑
摘要: AlexNet简介 AlexNet是2012年ISLVRC 2012(ImageNet Large Scale Visual RecognitionChallenge)竞赛的冠军网络,分类准确率由传统的 70%+提升到 80%+。它是由Hinton和他的学生Alex Krizhevsky设计的。也是 阅读全文
posted @ 2022-07-19 16:12 里列昂遗失的记事本 阅读(220) 评论(0) 推荐(1) 编辑
摘要: 通过链表实现栈 #include<iostream> #include "chainList.cpp" using namespace std; template<class T> class linkedStack { public: explicit linkedStack(int initia 阅读全文
posted @ 2022-06-11 21:48 里列昂遗失的记事本 阅读(20) 评论(0) 推荐(1) 编辑
摘要: 构建数组栈类 代码 #include <iostream> using namespace std; // 改变一个一维数组的长度 template<class T> void changeLength1D(T *&a, int oldLength, int newLength) { if (new 阅读全文
posted @ 2022-06-05 21:47 里列昂遗失的记事本 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 对角矩阵类(部分方法C++) 代码 #include<iostream> using namespace std; template<class T> class diagonalMatrix { public: explicit diagonalMatrix(int theN = 10); ~di 阅读全文
posted @ 2022-06-05 20:49 里列昂遗失的记事本 阅读(46) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; template<class T> class matrix { public: matrix(int theRows = 0, int theColumns = 0); matrix(const matrix<T> & 阅读全文
posted @ 2022-06-03 21:55 里列昂遗失的记事本 阅读(437) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std; int main() { int numberOfRows = 5; // 定义每一行的长度 int length[5] = {6, 3, 4, 2, 7}; // 声明一个二维数组变量 // 分配所需要的行 int * 阅读全文
posted @ 2022-06-02 11:09 里列昂遗失的记事本 阅读(78) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 18 下一页