一、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的更多相关文章

  1. (转) Awesome - Most Cited Deep Learning Papers

    转自:https://github.com/terryum/awesome-deep-learning-papers Awesome - Most Cited Deep Learning Papers ...

  2. Deep Learning Papers Reading Roadmap

    Deep Learning Papers Reading Roadmap https://github.com/songrotek/Deep-Learning-Papers-Reading-Roadm ...

  3. (转)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 ...

  4. 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, ...

  5. 【深度学习Deep Learning】资料大全

    最近在学深度学习相关的东西,在网上搜集到了一些不错的资料,现在汇总一下: Free Online Books  by Yoshua Bengio, Ian Goodfellow and Aaron C ...

  6. (转) Awesome Deep Learning

    Awesome Deep Learning  Table of Contents Free Online Books Courses Videos and Lectures Papers Tutori ...

  7. (转)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 ...

  8. 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 ...

  9. 机器学习(Machine Learning)&深度学习(Deep Learning)资料(Chapter 2)

    ##机器学习(Machine Learning)&深度学习(Deep Learning)资料(Chapter 2)---#####注:机器学习资料[篇目一](https://github.co ...

随机推荐

  1. jenkins集群加入Windows 2012 server作为slave

    必须安装.net framework 3.5, 參考: http://technet.microsoft.com/en-us/library/dn482071.aspx 不要在windows 2012 ...

  2. [TroubleShooting]'trn\bak' is incorrectly formed. SQL Server cannot process this media family.

     SQL Server online consultants came across an interesting scenario where one of our client was una ...

  3. [PATCH] UBUNTU: SAUCE: (no-up) apparmor: Sync to apparmor3 - RC1(v3.4.x kernel)

    ubuntu touch v3.4 kernel AppArmor v3 backport patch 地址1:https://github.com/multirom-aries/ubuntu-pho ...

  4. SQLServer 网络协议(一)

    SQLserver现在主要的3种协议:Shared Memory.TCP/IP 和 Named Pipe SharedMemory: Shared Memory最快最简单的协议,使用SharedMem ...

  5. 采用ACE登录设施(一)HelloWorld

    (1)开始使用日志设施 使用日志设施,总是要包括头文件: #include "ace/Log_Msg.h" ACE日志的Hello World #ifdef _DEBUG #pra ...

  6. C. Captain Marmot (Codeforces Round #271)

    C. Captain Marmot time limit per test 1 second memory limit per test 256 megabytes input standard in ...

  7. Struts的ONGL

    1.什么是OGNL OGNL它是Object Graphic Navigation Language(对象图导航语言)缩写,    它是一个开源项目. Struts2框架使用OGNL作为默认的表达式语 ...

  8. Linux下一个patch补丁命令

    此命令用于为特定软件包打补丁,他使用diff命令对源文件进行操作. 基本命令语法: patch [-R] {-p(n)} [--dry-run] < patch_file_name p:为pat ...

  9. 在线maven 仓库

    findmaven.net是一个查找Jar和查找Maven的Maven仓库搜索引擎.它能够依据Java开发人员提供的Class名或者Jar名找到包括它的Jar,同一时候提供Jar的Maven仓库链接, ...

  10. [LeetCode61]Rotate List

    题目: Given a list, rotate the list to the right by k places, where k is non-negative. For example:Giv ...