登录
注册
原创博客
(current)
算法案例
(current)
期刊会议
学术世界
领域期刊
SCI/SCIE/SSCI/EI简介
期刊列表
会议列表
所有期刊分区
学术期刊信息检索
JCR期刊分区查询
CiteScore期刊分区查询
中科院期刊分区查询
领域期刊分区
管理 - UTD24期刊列表
管理 - AJG(ABS)期刊星级查询
管理 - FMS推荐期刊列表
计算机 - CCF推荐期刊会议列表
高校期刊分区
南大核心(CSSCI)
合工大小核心
合工大大核心
AI资源仓库
AI论文快讯
AI预训练模型
AI数据集
AI开源工具
数据推荐
价值评估
数据集评分
AI工具评分
论文评分
专利列表
专利检索
科技大数据评估系统
网址导航
我的网址导航
程序员必备网站
深度学习的经典算法的论文、解读和代码实现
标签:
#深度学习#
时间:2019/06/03 11:36:41
作者:小木
[TOC] 深度学习是目前最火的算法领域。他在诸多任务中取得的骄人成绩使得其进化越来越好。本文收集深度学习中的经典算法,以及相关的解释和代码实现。目前主要包括CNN和RNN两大块内容。后续将持续更新,考虑加入强化学习以及生成对抗网络等。欢迎交流。 ### CNN网络的经典算法 #### LeNet-5 来源论文:[LeCun, Yann, et al. "Gradient-based learning applied to document recognition." Proceedings of the IEEE 86.11 (1998): 2278-2324.](https://ieeexplore.ieee.org/document/726791) 论文详解:[CNN入门算法LeNet-5详解](https://www.datalearner.com/blog/1051558664111790) 代码实现:https://github.com/TaavishThaman/LeNet-5-with-Keras #### AlexNet 来源论文:[Krizhevsky, Alex, Ilya Sutskever, and Geoffrey E. Hinton. "Imagenet classification with deep convolutional neural networks." Advances in neural information processing systems. 2012.](https://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf) 论文详解:[CNN经典算法AlexNet介绍](https://www.datalearner.com/blog/1051558919769185) 代码实现:https://github.com/hjptriplebee/AlexNet_with_tensorflow #### VGG 来源论文:[Simonyan, Karen, and Andrew Zisserman. “Very deep convolutional networks for large-scale image recognition.” arXiv preprint arXiv:1409.1556 (2014).](https://arxiv.org/pdf/1409.1556.pdf%20http://arxiv.org/abs/1409.1556) 论文详解:[CNN经典算法VGGNet介绍](https://www.datalearner.com/blog/1051559048634862) 代码和预训练资源:[VGGNet预训练模型及代码资源](https://www.datalearner.com/blog/1051559048634862#%E5%9B%9B%E3%80%81VGGNet%E9%A2%84%E8%AE%AD%E7%BB%83%E6%A8%A1%E5%9E%8B%E5%8F%8A%E4%BB%A3%E7%A0%81%E8%B5%84%E6%BA%90) #### Inception ##### Inception-v1(GoogLeNet) 来源论文:[Szegedy, Christian, et al. “Going deeper with convolutions.” Proceedings of the IEEE conference on computer vision and pattern recognition. 2015.](https://www.cv-foundation.org/openaccess/content_cvpr_2015/papers/Szegedy_Going_Deeper_With_2015_CVPR_paper.pdf) 论文详解:[CNN经典算法之Inception V1(GoogLeNet)](https://www.datalearner.com/blog/1051559096989577) 代码和预训练资源:[GoogLeNet代码资源(Tensorflow)](https://github.com/conan7882/GoogLeNet-Inception) ##### BN-Inception ##### Inception-v2 ##### Inception-v3 ##### Inception-v4 ##### Inception-ResNet #### NASNet #### ResNet #### R-CNN ##### R-CNN ##### Fast R-CNN ##### Faster R-CNN #### FCN ##### FCN ##### R-FCN #### YOLO ##### Yolo v1 ##### Yolo v2 ##### Yolo v3 #### SSD ### RNN的经典算法 #### RNN #### GRU #### LSTM #### Encoder-Decoder #### Attention #### Transformer #### BERT
相关博客
最热博客