承接上上篇博客,在其基础上,加入了Wasserstein distance和correlation prior 。其他相关工作、网络细节(maxout operator)、训练方式和数据处理等基本和前文一致。以下是这两点改进的大概: Wasserstein convolutional neural ...
分类:
其他好文 时间:
2018-11-25 20:07:39
阅读次数:
884
论文标题:An End-to-End Trainable Neural Network for Image-based Sequence Recognition and Its Application to Scene Text Recognition 论文作者: Baoguang Shi, Xia ...
分类:
移动开发 时间:
2018-11-24 20:54:22
阅读次数:
310
Modern neuroscientists often discuss the brain as a type of computer. Neural networks aim to do the opposite: build a computer that functions like a b ...
分类:
Web程序 时间:
2018-11-21 19:32:37
阅读次数:
164
[TOC] 一、亮点 提出 partition masked Convolutin Neural Network (CNN) ,用以提升 HEVC 压缩视频的质量。 其亮点在于:该网络 利用编码端提供的块分割信息,在解码端进行质量增强。 而现存的质量提升方法中,大多要么只在编码端(环路滤波器),要么 ...
分类:
Web程序 时间:
2018-11-13 16:10:03
阅读次数:
169
原网址:https://data-flair.training/blogs/cnn-tensorflow-cifar-10/ by DataFlair Team · Published May 21, 2018 · Updated September 15, 2018 1、目标-TensorFlow ...
分类:
Web程序 时间:
2018-11-12 13:19:23
阅读次数:
260
我摘录的代码。 原文:https://sefiks.com/2018/03/21/autoencoder-neural-networks-for-unsupervised-learning/ Previously, we’ve applied conventional autoencoder to ...
分类:
Web程序 时间:
2018-11-10 19:03:45
阅读次数:
722
这本书应该算我第一本深度学习的代码入门书了吧,之前看阿里云云栖社和景略集智都有推荐这本书就去看了, 成功建立了自己的第一个神经网络,也了解一些关于深度学习的内容,再加上这学期的概率论与数理统计的课, 现在再来看李大大的机器学习课程,终于能看懂LogisticsRegression概率那部分公式!不至 ...
分类:
编程语言 时间:
2018-11-07 00:47:36
阅读次数:
253
Vaswani A, Shazeer N, Parmar N, et al. Attention is all you need[C]//Advances in Neural Information Processing Systems. 2017: 5998-6008. 文章提出纯粹基于atten ...
分类:
其他好文 时间:
2018-11-06 13:36:13
阅读次数:
343
对于convolution: output = (input + 2 * p - k) / s + 1; 对于deconvolution: output = (input - 1) * s + k - 2 * p; ...
分类:
编程语言 时间:
2018-11-06 11:12:06
阅读次数:
376
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