[Fri, 3 Jul 2015 ~ Tue, 7 Jul 2015] Deep Learning in arxiv

Convolutional Color Constancy

can this be used for training cnn to narrow the gap between different lighting conditions?

Describing Multimedia Content using Attention-based Encoder–Decoder Networks

lots of machine translation, speech recognition, image caption related reference

End-to-end Convolutional Network for Saliency Prediction

theano based code: https://imatge.upc.edu/web/resources/end-end-convolutional-networks-saliency-prediction-software

EXPERIMENTS ON PARALLEL TRAINING OF DEEPNEURAL NETWORK USING MODEL AVERAGING

mpi for multi-gpu solution

A linear approach for sparse coding by atwo-layer neural network

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-08-07 11:52:21

[Fri, 3 Jul 2015 ~ Tue, 7 Jul 2015] Deep Learning in arxiv的相关文章

[Thu, 9 Jul 2015 ~ Tue, 14 Jul 2015] Deep Learning in arxiv

这一期的神作论文有蛮多的,都非常有意思. Feature Representation In ConvolutionalNeural Networks 该论文中论述了在某种CNN结构下,是否有准确率较高的off model的分类方法(这里是指非softmax)能达到更有效的分类结果呢? 论文给出了肯定的答案. 该论文还给出了各层特征重要性的图表,蛮有意思的 该论文还交代了实验中用到的开源代码. Towards Good Practices for Very DeepTwo-Stream Conv

[Fri 26 Jun 2015 ~ Thu 2 Jul 2015] Deep Learning in arxiv

Natural Neural Networks Google DeepMind又一神作 Projected Natural Gradient Descent algorithm (PRONG) better than SGD as evidenced by the boost in performance offered by batch normalization (BN) Deep Convolutional Matching DEEP-PLANT: PLANT IDENTIFICATION

[Tue, 21 Jul 2015 ~ Mon, 27 Jul 2015] Deep Learning in arxiv

Compression of Fully-Connected Layer inNeural Network by Kronecker Product 又是一篇压缩网络文章,但没有给出在imagenet上的错误率变化,有待观测. Building a Large-scale Multimodal KnowledgeBase for Visual Question Answering 李飞飞视觉QA KB示意图 系统流程图 Bottom-up and top-down reasoning withc

[Tue, 11 Aug 2015 ~ Mon, 17 Aug 2015] Deep Learning in arxiv

Image Representations and New Domains inNeural Image Captioning we find that a state-of-theart neuralcaptioning algorithm is able to produce quality captions even when providedwith surprisingly poor image representations Deep Boosting: Joint Feature

[Fri 19 Jun 2015 ~ Thu 25 Jun 2015] Deep Learning in arxiv

A Neural Network Approach to Context-Sensitive Generation of Conversational Responses Leverage Financial News to Predict Stock Price Movements Using Word Embeddings and Deep Neural Networks MatchNet: Unifying Feature and Metric Learning for Patch-Bas

[12 Jun 2015 ~ 18 Jun 2015] Deep Learning in arxiv

Multi-pathConvolutional Neural Network for Complex Image Classification Suppresshigh frequency components with Bilateral filter in the second path ParseNet:Looking Wider to See Better code:https: //github.com/weiliu89/caffe/tree/fcn SEMANTICIMAGE SEG

[3 Jun 2015 ~ 9 Jun 2015] Deep Learning in arxiv

arXiv is an e-print service in the fields of physics, mathematics, computer science, quantitative biology, quantitative finance and statistics. There'll be lots of papers in advance. Here's some recent papers which is important or interesting. 1. Obj

[10 Jun 2015 ~ 11 Jun 2015] Deep Learning in arxiv

1. similarity nets DeepSimNets 2. multi-task Learning Multiple Tasks with Deep Relationship Networks 3. interactive learning system Constructionof a Large-scale Image Dataset using Deep Learning with Humans in the Loop

“Fri Dec 11 00:00:00 CST 2015”日期格式解析

1.后台处理方式: /* 精简版解析 - 推荐 */ String a= "Fri Dec 11 00:00:00 CST 2015"; Date d = new Date(a); String f = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(d); System.out.println(f); /* 稍繁版解析 */ import java.text.ParseException; import jav