
CNN
文章平均质量分 50
biubiubiu888
这个作者很懒,什么都没留下…
展开
-
tensorflow中的1维卷积-备忘
tensorflow中1维卷积的官方文档:https://tensorflow.google.cn/api_docs/python/tf/nn/conv1dtf.nn.conv1d( value, filters, stride, padding, use_cudnn_on_gpu=None, data_format=None, nam...原创 2018-08-24 14:25:04 · 1933 阅读 · 2 评论 -
tensorflow中的可分离卷积
可分离卷积的官方文档:http://www.tensorfly.cn/tfdoc/api_docs/python/nn.html#separable_conv2dtf.nn.depthwise_conv2d(input, filter, strides, padding, name=None)参数介绍:input: 4-D with shape [batch, in_heig...原创 2018-08-24 20:21:53 · 1817 阅读 · 0 评论 -
空洞卷积
版权声明:本文为博主原创文章,转载请注明出处。 https://blog.youkuaiyun.com/mao_xiao_feng/article/details/78003730实验环境:tensorflow版本1.2.0,python2.7介绍关于空洞卷积的理论可以查看以下链接,这里我们不详细讲理论:1.Long J, Shelhamer E, Darrell T, et al. Full...转载 2018-09-17 16:23:13 · 1257 阅读 · 0 评论 -
pytorch BN函数说明
pytorch中的BN继承自:class _BatchNorm(Module):这个类的代码:class _BatchNorm(Module): def __init__(self, num_features, eps=1e-5, momentum=0.1, affine=True, track_running_stats=True):...原创 2019-05-13 13:00:40 · 12645 阅读 · 1 评论