以下是自己对一些论文原文的解读:
机器学习:
《XGBoost: A Scalable Tree Boosting System》
《CatBoost:gradient boosting with categorical features support》-2018
《LightGBM:A Highly Efficient Gradient Boosting Decision Trees》
主流剪枝算法原理与代码实现汇总
《Improved Use of Continuous Attributes in C4.5》

NLP:
《Latent Dirichlet Allocation》-2003
《Probabilistic Latent Semantic Indexing》

神经网络论文解读:
《A LOGICAL CALCULUS OF THE IDEAS IMMANENT IN NERVOUS ACTIVITY》(神经网络鼻祖,符号生僻,基本没法阅读)
《Learning representations by back-propagating errors》
《finding Structure in time》
《Backpropagation Through Time:What it Does and How to Do it》

权值更新的算法文章:
比较重要的一篇综述是:
http://ruder.io/optimizing-gradient-descent/index.html

《Batch Normalization:Accelerating Deep Network Training by Reducing Internal Covariate Shift》(Batch Normalization原文解读)

《On the momentum term in gradient descent learning algorithms》(Momentum原文解读,这篇是讲物理机械振荡的)

《A method for unconstrained convex minimization problem with the rate of convergence》(Nesterov’s Momentum原文)
《ADAM: A METHOD FOR STOCHASTIC OPTIMIZATION》(adam原文)
《ADADELTA: AN ADAPTIVE LEARNING RATE METHOD》(adadelta原文)
《Adaptive Subgradient Methods for Online Learning and Stochastic Optimization》(adagrad原文)
《Learning Long-Term Dependencies with Gradient Descent is Difficult》(首次提出RNN梯度消失的文章)

Empirical Evaluation of Gated Recurrent Neural Networks on Sequence Modeling(GRU单元)

#----------------------------------------------------------------------------------
YOLO系列(还没开始)
YOLOv1
You Only Look Once:Unified,Real-Time Object Detection

YOLOv2:
YOLO9000:Better,Faster,Stronger

YOLOv3:
YOLOv3:An Incremental Improvement
#----------------------------------------------------------------------------------
Inception系列(还没开始)
Inception v1:
Going deeper with convolutions

Inception v2:
Rethinking the Inception Architecture for Computer Vision

Inception v3:
Xception:Deep Learning with Depthwise Separable Convolutions

Inception v4:
Inception-v4,Inception-ResNet and the Impact of Residual Connections on Learning

#----------------------------------------------------------------------------------
DeepID系列(还没开始)
Deep ID1:
Deep Learning Face Representation from Predicting 10,000 Classes

DeepID2:
Deep Learning Face Representation by Joint Identification-Verification

DeepID2+:
Deeply learned face representations are spars,selective,and robust

DeepID3:
DeepID3:Face Recognition with Very Deep Neural Networks
#----------------------------------------------------------------------------------
LeNet:
Y. Lecun, L. Bottou, Y. Bengio, and P. Haffner(1998): Gradient-based
learning applied to document recognition. Proceedings of the IEEE 86,
11 (November 1998), 2278 – 2324.

AlexNet
Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton(2012):
ImageNet Classification with Deep Convolutional Neural Networks.
In F. Pereira, C. J. C. Burges, L. Bottou, & K. Q. Weinberger, eds.
Advances in Neural Information Processing Systems 25. Curran
Associates, Inc., 1097 – 1105

ResNet:
Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun(2015):
Deep Residual Learning for Image Recognition. arXiv:1512.03385 [cs]
(December 2015)

Vgg:
Karen Simonyan and Andrew Zisserman(2014): Very Deep
Convolutional Networks for Large-Scale Image Recognition.
arXiv:1409.1556 [cs] (September 2014)

GoogleNet:
Christian Szegedy et al(2015): Going Deeper With Convolutions. In
The IEEE Conference on Computer Vision and Pattern Recognition
(CVPR)

RCNN
Ross Girshick, Jeff Donahue, Trevor Darrell, and Jitendra Malik(2014):
Rich Feature Hierarchies for Accurate Object Detection and Semantic
Segmentation. In 580 – 587.

Faster RCNN:
Shaoqing Ren, Kaiming He, Ross Girshick, and Jian Sun(2015): Faster
R-CNN: Towards Real-Time Object Detection with Region Proposal
Networks. In C. Cortes, N. D. Lawrence, D. D. Lee, M. Sugiyama, & R.
Garnett, eds. Advances in Neural Information Processing Systems 28.
Curran Associates, Inc., 91 – 99.

FCN
Jonathan Long, Evan Shelhamer, and Trevor Darrell(2015): Fully
Convolutional Networks for Semantic Segmentation. In The IEEE
Conference on Computer Vision and Pattern Recognition (CVPR).

NIC
Oriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan
(2015): Show and Tell: A Neural Image Caption Generator. In The
IEEE Conference on Computer Vision and Pattern Recognition
(CVPR)

DCGAN
Alec Radford, Luke Metz, and Soumith Chintala(2015): Unsupervised
Representation Learning with Deep Convolutional Generative
Adversarial Networks. arXiv:1511.06434 [cs] (November 2015)

SegNet:
Vijay Badrinarayanan, Kendall, and Roberto Cipolla(2015): SegNet:
A Deep Convolutional Encoder-Decoder Architecture for Image
Segmentation. arXiv preprint arXiv:1511.00561 (2015).

注意,卷积层会消耗大量的时间,vgg工程师们都很爱用

人工智能论文合集
这个最后看
Assessing the Scalability of Biologically-Motivated Deep Learning Algorithms and Architectures

下面一些原文还没阅读:

Learning representations by back-propagating errors
1998《Gradient-Based Learning Applied to Documnet Recognition》
2006《Reducing the Dimensionality of Data with Neural Networks》
2012《ImageNet Classification with Deep Convolutional Neural Networks》
2013.11《Visualizing and Understanding Convolutional Networks》(CNN可视化工具)
2013.12《OverFeat: Integrated Recognition, Localization and Detection using Convolutional Networks》
<DeepFace: Closing the Gap to Human-Level Performance in Face Verification>
<Spatial Transformer Networks>
Serial Order:A Parallel Distributed Processing Approach(这个文章是RNN成型前的文章)

<Highway Neiworks>
<Recurrent Highway Networks>
<The Vanishing Gradient Problem>(For the ppt of this lecture click here)
<The Vanishing Gradient Problem During Learning Recurrent Neural Nets and Problem Solutions>
<Learning Long-Term Dependencies with Gradient Descent is difficult>

<Implement binary addition with a non-linear RNN>
<Bidirectional recurrent neural networks>
<Learning Phrase Representations using RNN Encoder-Decoder for Statistical Machine Translation>
<On the difficulty of training recurrent neural networks>
<Recurrent Nets that Time and Count>
<Bidirectional Long Short-Term Memory Networks for Predicting the Subcellular Localization of Eukaryotic Proteins>
<Efficient Processing of Deep Neural Networks:A Tutorial and Survey>
<Long Short-Term Memory>(不要去阅读,符号古怪 )
<Finding Structure in Time>(不要去阅读,符号古怪 )
How to Implement a Simple RNN
Reducing the Dimensionality of Data with Neural networks
Gradient-Based Learning Applied to Document Recognition

Network In Network
Very Deep Convolutional Networks For Large-Scale Image Recognition(VGG16-VGG19)
DeePose:Human Pose Estimation via Deep Neural Networks

【ICLR 2017】SqueezeNet AlexNet-level accuracy with 50x fewer parameters and 0.5MB model size

Fast R-CNN
Faster R-CNN:Towards Real-Tme Object Detection with Region Proposal Networks
Generative Adversarial Nets
Understanding the difficulty of training deep feedforward neural networks
Densely Connected Convolutional Networks(DenseNet)

Neural Networks and Physical Systems with Emergent Collective Computational Abilities

论文原文解读汇总(持续更新中)相关推荐

  1. 【Spring Boot官方文档原文理解翻译-持续更新中】

    [Spring Boot官方文档原文理解翻译-持续更新中] 文章目录 [Spring Boot官方文档原文理解翻译-持续更新中] Chapter 4. Getting Started 4.1. Int ...

  2. YOLO 3/4/5/6/7/x、Efficient、MaskRcnn、FasterRcnn、FCOS、SSD、M2Det、Retina、CenterNet、PicoDet等系列数据模型汇总持续更新中

    做了很长时间的CV领域的任务了,见到了很多不错的项目,很多时候也是会选择直接拿来开源的项目去使用,自己也做过了很多项目,后面就萌生了一个想法,将看到的不错的文章或者是数据集或者是项目汇总记录一下,以便 ...

  3. 技术问题收集整理汇总——持续更新中...

    此文章的目的是收集自己在网上看到的不错的文章或帖子,并将这些文章的索引统一收集在这里,并持续更新中....大家有好的东西也可以分享过来哦! 1.关于java为什么要使用继承(或java使用继承有什么用 ...

  4. 软件编程学习网站汇总——持续更新中

    持续更新各种国内外关于编程语言学习及讨论的网站,有时间我会添加介绍,不过相信很多网站你们都熟悉了,喜欢的可以收藏,我也留着等以后需要的时候翻阅. 若链接有错误,提醒我下,我来改正.有其他好的站也可以推 ...

  5. LeetCode All in One 题目讲解汇总(持续更新中...)

    原文地址:https://www.cnblogs.com/grandyang/p/4606334.html 终于将LeetCode的大部分题刷完了,真是漫长的第一遍啊,估计很多题都忘的差不多了,这次开 ...

  6. Java知识点汇总 持续更新中~~~

    一.什么是面向对象? 是基于面向过程而言,面向对象是将功能通过对象来实现,将功能封装进对象之中,让对象去实现具体的细节. 二.标识符的格式? 1.可以使用字母.数字._.$来组成,不能使用特殊符号. ...

  7. [Linux] Linux指令汇总(持续更新中...)

    写在前面: 以前真心没有玩过Linux系统,总感觉整天摆弄Linux的同学都是大牛.如今,在公司里实习需要远程登录Linux服务器,所有的代码都要在开发板上完成,所以被逼无奈也不得不定下心来好好学学L ...

  8. 银屑病缺乏的营养汇总(持续更新中)

    根据[1],银屑病缺乏维生素和矿物元素是果,并不是因. 例如,我有脂溢性皮炎,缺维生素B,然后我补充这个,之后即使脂溢性皮炎好了,我的银屑病依然没好. 所以补充维生素至多只能治表,不能治根. [2]还 ...

  9. [Machine Learning]--知识点疑问汇总[持续更新中]

    [Machine Learning]–知识点汇总 1.逻辑回归是线性还是非线性? https://stats.stackexchange.com/questions/93569/why-is-logi ...

最新文章

  1. C# 安装部署,关于自定义操作,不能被执行。
  2. Spring AOP里面的几个名词
  3. java使用:: 表达式_Java 13:切换表达式的增强功能
  4. vs2010编写的net3.5用vs2008打开
  5. 分享codeigniter 路由(URL)终极优化
  6. Conference Related to social network.
  7. 计算机类有电子商务类,电子商务类专业有哪些-电子商务类专业名单汇总
  8. 关于jq easyui 刷新tabs的问题
  9. Netty工作笔记0009---Channel基本介绍
  10. Hibernate初次搭建与第一个测试例子
  11. spring-boot-maven-plugin多模块install问题解决办法
  12. c语言变量起别名,typedef可以与此同时为一个类型起两个别名
  13. 2017中国屏幕分辨率统计
  14. java高级工程师工资_java高级工程师工资为何让人艳羡不已
  15. 关于VMware增强型键盘驱动程序
  16. 苹果电脑装系统出现未能与服务器取得联系,Mac您的磁盘未能分区 Mac磁盘分区出错解决办法...
  17. 二值化网络的发展——从原始BNN到MeliusNet
  18. 语音信号的梅尔频率倒谱系数(MFCC)的原理讲解及python实现
  19. 利盟 x466 双面打印问题之正反面颠倒
  20. CSS让行内元素撑满整个视口

热门文章

  1. IOS中的懒加载lazyLoad
  2. 【转】日服巫术online过驱动保护分析(纯工具)(工具+自写驱动)
  3. POJ 2808 校门外的树
  4. XCTF-高手进阶区:unserialize3
  5. (四)数据结构之“队列”
  6. (八)React原理
  7. linux共享库的运行方式,Linux下动态共享库加载及使用详解
  8. mysql默认数据库有什么用_MySQL安装后默认自带数据库的作用
  9. 2013年4月 计算机网络原理答案,2013年4月份自学考试计算机网络原理04741答案
  10. CSS3属性之——filter