Deep Learning Papers
一、Image Classification(Recognition)
lenet: http://yann.lecun.com/exdb/publis/pdf/lecun-01a.pdf
alexnet: http://www.cs.toronto.edu/~fritz/absps/imagenet.pdf
overfeat: http://arxiv.org/pdf/1312.6229v4.pdf
vgg: http://arxiv.org/pdf/1409.1556.pdf
googlenet: http://arxiv.org/pdf/1409.4842v1.pdf
二、Image Detection(Segmentation)
overfeat: http://arxiv.org/pdf/1312.6229v4.pdf
dnn: http://papers.nips.cc/paper/5207-deep-neural-networks-for-object-detection.pdf
rcnn: http://arxiv.org/pdf/1311.2524.pdf
spp: http://arxiv.org/pdf/1406.4729v4.pdf
fcn: http://arxiv.org/pdf/1411.4038v2.pdf
fast rcnn: http://arxiv.org/pdf/1504.08083v1.pdf
三、Image(Visual) Search
feature learning+hash: http://arxiv.org/pdf/1504.03410v1.pdf
triplet learning: http://arxiv.org/pdf/1412.6622v3.pdf
deep rank: http://arxiv.org/pdf/1404.4661v1.pdf
Visual Search at Pinterest: http://arxiv.org/pdf/1505.07647v1.pdf
四、Image/Video Captioning
Baidu/UCLA: http://arxiv.org/abs/1410.1090
Toronto: http://arxiv.org/abs/1411.2539
Berkeley: http://arxiv.org/abs/1411.4389
Google: http://arxiv.org/abs/1411.4555
Stanford: http://cs.stanford.edu/people/karpathy/deepimagesent/
UML/UT: http://arxiv.org/abs/1412.4729
Microsoft/CMU: http://arxiv.org/abs/1411.5654
Microsoft: http://arxiv.org/abs/1411.4952
版权声明:本文博主原创文章。博客,未经同意不得转载。
Deep Learning Papers的更多相关文章
- (转) Awesome - Most Cited Deep Learning Papers
转自:https://github.com/terryum/awesome-deep-learning-papers Awesome - Most Cited Deep Learning Papers ...
- Deep Learning Papers Reading Roadmap
Deep Learning Papers Reading Roadmap https://github.com/songrotek/Deep-Learning-Papers-Reading-Roadm ...
- (转)The 9 Deep Learning Papers You Need To Know About (Understanding CNNs Part 3)
Adit Deshpande CS Undergrad at UCLA ('19) Blog About The 9 Deep Learning Papers You Need To Know Abo ...
- What are some good books/papers for learning deep learning?
What's the most effective way to get started with deep learning? 29 Answers Yoshua Bengio, ...
- 【深度学习Deep Learning】资料大全
最近在学深度学习相关的东西,在网上搜集到了一些不错的资料,现在汇总一下: Free Online Books by Yoshua Bengio, Ian Goodfellow and Aaron C ...
- (转) Awesome Deep Learning
Awesome Deep Learning Table of Contents Free Online Books Courses Videos and Lectures Papers Tutori ...
- (转)Deep Learning Research Review Week 1: Generative Adversarial Nets
Adit Deshpande CS Undergrad at UCLA ('19) Blog About Resume Deep Learning Research Review Week 1: Ge ...
- Why Deep Learning Works – Key Insights and Saddle Points
Why Deep Learning Works – Key Insights and Saddle Points A quality discussion on the theoretical mot ...
- 机器学习(Machine Learning)&深度学习(Deep Learning)资料(Chapter 2)
##机器学习(Machine Learning)&深度学习(Deep Learning)资料(Chapter 2)---#####注:机器学习资料[篇目一](https://github.co ...
随机推荐
- 谷歌宣布Android auto目前的汽车系统汽车市场的影响
由于2007年.汽车导航产品已经得到长足的发展.其产品主要用于WinCE制.除了导航功能,通常有收音机,播放光盘.广播SD卡/U音频和视频盘,蓝牙手机,倒车后视功能.由于WinCE微软放弃系统,And ...
- 使用dom4j创建和解析xml
之前工作中用到了,相信写java的都会碰到xml,这里写了两个方法,创建和解析xml,废话不多说,直接上代码 package xml; import java.io.File; import java ...
- LNMP 免安装包
LNMP(Linux-Nginx-Mysql-PHP)可爱的黄金搭档,不过配置并不轻易,而我平常用于测试环境又经常用到,所以打包了这么一个免安装的LNMP包,内置常用库和模块,以及基本的优化设置,这样 ...
- Android 4.0新组件:GridLayout详细说明
于Android 4.0(API 14)它提供了一个新的组件GridLayout,它继承自Linearlayout,用于执行网络格样式布局. 在某些方面,GridLayout与TableLayout和 ...
- Java 的布局管理器GridBagLayout的使用方法(转)
GridBagLayout是java里面最重要的布局管理器之一,可以做出很复杂的布局,可以说GridBagLayout是必须要学好的的, GridBagLayout 类是一个灵活的布局管理器,它不要求 ...
- LeetCode: Distinct Subsequences [115]
[称号] Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequ ...
- 采用objdump调试驱动程序
最近的一个推断调整nand是好是坏司机+测试程序,因此,与下面的调整过程.看来他也学到了一点知识.因此,关于备案. 这篇文章主要是讲述调式驱动的一个方法而已. 先来看看測试程序 #include &l ...
- poj 2408 Anagram Groups(hash)
id=2408" target="_blank" style="">题目链接:poj 2408 Anagram Groups 题目大意:给定若干 ...
- [LeetCode118]Pascal's Triangle
题目: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,R ...
- c# socket udp广播
一.广播消息 由于Tcp是有连接的,所以不能用来发送广播消息.发送广播消息,必须用到Udp,Udp可以不用建立连接而发送消息.广播消息的目的IP地址是一种特殊IP地址,称为广播地址.广播地址由IP地址 ...