会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
玉缙-Glen
Le soir,je me sens plus belle
博客园
首页
新随笔
联系
订阅
管理
2018年9月11日
Efficient Inference in Fully Connected CRFs with Gaussian Edge Potentials阅读笔记
摘要: 主要贡献·:为全连接CRF实现的一个高效近似推断随机算法,其成对边势被一组线性高斯核所定义。 目标:将图像中的每个像素按照预设的分类目录来贴标签,同时对多目标类进行识别和分割。一种比较常见的方法是最大后验估计。CRF势中包含了平滑项,其可以让相邻像...
阅读全文
posted @ 2018-09-11 10:54 kkkkkksssss
阅读(708)
评论(0)
推荐(0)
2018年9月6日
Conditional Random Fields as Recurrent Neural Networks阅读笔记
摘要: 一般来说,CNNs中最大池化层的存在会使得分割的输出变得粗糙,CNNs亦缺少使相似像素被分配相同标签的约束。CRF的存在就可以细化上述的粗糙输出,从而产生明晰的边界,实现精细分割。 利用CRF主要有两种方式,一种是作为与CNN分离的后处理,本文采用的是第...
阅读全文
posted @ 2018-09-06 22:06 kkkkkksssss
阅读(888)
评论(0)
推荐(0)
2018年9月3日
Fully Convolutional Networks for Semantic Segmentation阅读笔记
摘要:
阅读全文
posted @ 2018-09-03 19:53 kkkkkksssss
阅读(219)
评论(0)
推荐(0)
2018年5月5日
LeetCode824.Goat Latin
摘要: class Solution: def toGoatLatin(self, S): """ :type S: str :rtype: str """ sList = S.split() ...
阅读全文
posted @ 2018-05-05 15:33 kkkkkksssss
阅读(107)
评论(0)
推荐(0)
2018年5月4日
LeetCode118.杨辉三角
摘要: 1.个人所做代码class Solution: def generate(self, numRows): """ :type numRows: int :rtype: List[List[int]] """...
阅读全文
posted @ 2018-05-04 20:44 kkkkkksssss
阅读(120)
评论(0)
推荐(0)
LeetCode500.键盘行
摘要: class Solution: def isAllIn(self, word, strs): flag = True for s in word: if s not in strs: ...
阅读全文
posted @ 2018-05-04 11:29 kkkkkksssss
阅读(125)
评论(0)
推荐(0)
LeetCode804.唯一摩尔斯密码词
摘要: class Solution: def uniqueMorseRepresentations(self, words): """ :type words: List[str] :rtype: int """...
阅读全文
posted @ 2018-05-04 09:21 kkkkkksssss
阅读(130)
评论(0)
推荐(0)
2018年5月3日
LeetCode476.数字的补数
摘要: class Solution: def findComplement(self, num): """ :type num: int :rtype: int """ binaryX = bin(...
阅读全文
posted @ 2018-05-03 22:21 kkkkkksssss
阅读(103)
评论(0)
推荐(0)
LeetCode461.汉明距离
摘要: class Solution: def hammingDistance(self, x, y): """ :type x: int :type y: int :rtype: int """ ...
阅读全文
posted @ 2018-05-03 21:34 kkkkkksssss
阅读(113)
评论(0)
推荐(0)
LeetCode657.判断路线成圈
摘要: class Solution: def judgeCircle(self, moves): """ :type moves: str :rtype: bool """ count_R = 0 ...
阅读全文
posted @ 2018-05-03 20:23 kkkkkksssss
阅读(98)
评论(0)
推荐(0)
下一页
公告