摘要: reference: https://blog.csdn.net/jningwei/article/details/79243800 learning rate:学习率,控制模型的学习进度,决定权值更新的速度。也叫做步长,即反向传播算法的 学习率的设置 在训练开始时,根据迭代次数动态设置学习率。 刚 阅读全文
posted @ 2018-10-22 14:21 fourmii 阅读(1086) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://arxiv.org/pdf/1511.00561.pdf github(tensorflow):https://github.com/aizawan/segnet 基于SegNet的钢铁分割实验:https://github.com/fourmi1995/IronSegEx 阅读全文
posted @ 2018-10-15 22:18 fourmii 阅读(9081) 评论(0) 推荐(1) 编辑
摘要: 参考博客:https://blog.csdn.net/m0_37725003/article/details/80904824 step I: 创建自己的github账户(username:fourmi1995 password:ga*s****jun***i*123 (fourmi2017@gma 阅读全文
posted @ 2018-10-12 10:43 fourmii 阅读(1114) 评论(0) 推荐(0) 编辑
摘要: #include struct ListNode { int m_nValue; ListNode* m_pNext; }; ListNode* CreateListNode(int value) { ListNode* pNode = new ListNode(); pNode->m_nValue = value; pNode->m_pNext =... 阅读全文
posted @ 2018-10-03 11:34 fourmii 阅读(786) 评论(0) 推荐(0) 编辑
摘要: //2018-09-08-fourmi /*************************include head files************************************************/ #include #include #include #include #include #include #include #include /**********... 阅读全文
posted @ 2018-09-10 15:12 fourmii 阅读(351) 评论(0) 推荐(0) 编辑
摘要: MATLAB部分: xmap = repmat( linspace( -regionW/2, regionW/2, regionW), regionH, 1 );%linspace [x1,x2,N] 等差数列 ymap = repmat( linspace( -regionH/2, regionH/2, regionH)', 1, regionW); %转置 %compute the an... 阅读全文
posted @ 2018-09-04 17:47 fourmii 阅读(702) 评论(0) 推荐(0) 编辑
摘要: 结构推理网络:基于场景级与实例级目标检测 原文链接:https://arxiv.org/abs/1807.00119 代码链接:https://github.com/choasup/SIN Yong Liu, Ruiping Wang, Shiguang Shan, Xilin Chen. Stru 阅读全文
posted @ 2018-08-23 16:05 fourmii 阅读(2600) 评论(2) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-"""Fourmi EditorThis is a temporary script file."""import cv2import osimport numpy as npimport randomimport mathdef disOrdeImgs 阅读全文
posted @ 2018-05-23 21:03 fourmii 阅读(1082) 评论(0) 推荐(0) 编辑
摘要: 下面代码由搭档注释,保存下来用作参考。 迭代5000次的实验结果图如下: 原始图: groundTruth: 预测图: 阅读全文
posted @ 2018-05-06 09:25 fourmii 阅读(4313) 评论(2) 推荐(0) 编辑
摘要: 今天来看一看一个比较经典的语义分割网络,那就是FCN,全称如题,原英文论文网址:https://people.eecs.berkeley.edu/~jonlong/long_shelhamer_fcn.pdf 三位大佬:Jonathan Long Evan Shelhamer Trevor Darr 阅读全文
posted @ 2018-05-05 22:41 fourmii 阅读(4725) 评论(0) 推荐(0) 编辑