码迷,mamicode.com
首页 >  
搜索关键字:convolution    ( 140个结果
利用CNN神经网络实现手写数字mnist分类
题目: 1)In the first step, apply the Convolution Neural Network method to perform the training on one single CPU and testing 2)In the second step, try t ...
分类:其他好文   时间:2019-01-06 20:42:53    阅读次数:325
[卷积]空洞卷积的改进
文章来源: https://zhuanlan.zhihu.com/p/50369448 从这几年的分割结果来看,基于空洞卷积的分割方法效果要好一些,为此,拿出两天时间来重新思考下空洞卷积问题。 . 语义分割创新该怎么做呢。引言空洞卷积(Dilated/Atrous Convolution),广泛应用 ...
分类:其他好文   时间:2018-12-26 22:24:07    阅读次数:375
Convolutions in TensorFlow
Convolutions in TensorFlow Convolutions without training You might already be familiar with the term "convolution" from a mathematical or physical con ...
分类:其他好文   时间:2018-12-23 00:25:45    阅读次数:286
Mobilenet V1
[TOC] 参考博客: https://cuijiahua.com/blog/2018/02/dl_6.html 1. Depth Separable Convolution A standard convolution both filters and combines inputs into a ...
分类:Web程序   时间:2018-12-16 16:40:23    阅读次数:185
caffe Python API 之上卷积层(Deconvolution)
对于convolution: output = (input + 2 * p - k) / s + 1; 对于deconvolution: output = (input - 1) * s + k - 2 * p; ...
分类:编程语言   时间:2018-11-06 11:12:06    阅读次数:376
caffe Python API 之卷积层(Convolution)
1 import sys 2 sys.path.append('/projects/caffe-ssd/python') 3 import caffe 4 5 net = caffe.NetSpec() 6 # net.data ,net.label = caffe.layers.ImageData... ...
分类:编程语言   时间:2018-11-05 19:16:35    阅读次数:447
Convolution Fundamental I
Convolution Fundamental I Foundations of CNNs Learning to implement the foundational layers of CNN's (pooling,convolutions) and to stack them properly... ...
分类:其他好文   时间:2018-11-04 17:05:09    阅读次数:127
Convolution Fundamental II
Practical Advice Using Open-Source Implementation We have learned a lot of NNs and ConvNets architectures It turns out that a lot of these NN are diff... ...
分类:其他好文   时间:2018-11-04 17:03:04    阅读次数:120
Global Average Pooling Layers for Object Localization
For image classification tasks, a common choice for convolutional neural network (CNN) architecture is repeated blocks of convolution and max pooling ... ...
分类:其他好文   时间:2018-09-30 21:24:33    阅读次数:533
译:Local Spectral Graph Convolution for Point Set Feature Learning-用于点集特征学习的局部谱图卷积
作者:Chu Wang, Babak Samari, Kaleem Siddiqi 译者:Elliott Zheng Abstract 点云的特征学习已经显示出巨大的希望,引入了有效且可推广的深度学习框架,例如pointnet ++。 然而,到目前为止,点特征已经以独立和孤立的方式被抽象,忽略了相邻 ...
分类:其他好文   时间:2018-09-14 00:10:07    阅读次数:255
140条   上一页 1 ... 3 4 5 6 7 ... 14 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!