当前位置: 首页 > news >正文

深度学习的经典算法的论文、解读和代码实现

文章目录

  • CNN网络的经典算法
    • LeNet-5
    • AlexNet
    • VGG
    • Inception
      • Inception-v1(GoogLeNet)
      • BN-Inception
    • ResNet
    • R-CNN
      • R-CNN
      • Fast R-CNN
      • Faster R-CNN
    • YOLO
      • YOLO v1
      • YOLO v2
      • YOLO v3
      • YOLO v4
  • RNN的经典算法
    • RNN
    • GRU
    • LSTM
    • Encoder-Decoder
    • Attention
    • Transformer

CNN网络的经典算法

LeNet-5

  • 来源论文:LeCun, Yann, et al. “Gradient-based learning applied to document recognition.” Proceedings of the IEEE 86.11 (1998): 2278-2324.
  • 论文详解:CNN入门算法LeNet-5详解
  • 代码实现: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.
  • 论文详解:CNN经典算法AlexNet介绍
  • 代码实现: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).
  • 论文详解:CNN经典算法VGGNet介绍
  • 代码和预训练资源:VGGNet预训练模型及代码资源

Inception

Inception-v1(GoogLeNet)

  • 来源论文:Szegedy, Christian, et al. “Going deeper with convolutions.” Proceedings of the IEEE conference on computer vision and pattern recognition. 2015.
  • 论文详解:CNN经典算法之Inception V1(GoogLeNet)
  • 代码和预训练资源:GoogLeNet代码资源(Tensorflow)

BN-Inception

  • 来源论文:Szegedy, Christian, et al. “Inception-v4, inception-resnet and the impact of residual connections on learning.” Proceedings of the AAAI conference on artificial intelligence. Vol. 31. No. 1. 2017.
  • 论文详解:CNN经典算法之BN-Inception
  • 代码和预训练资源:BN-Inception代码资源

ResNet

  • 来源论文:Targ, Sasha, Diogo Almeida, and Kevin Lyman. “Resnet in resnet: Generalizing residual architectures.” arXiv preprint arXiv:1603.08029 (2016).
  • 论文详解:ResNet论文详解
  • 代码实现:ResNet代码(超详细注释)+数据集下载地址

R-CNN

R-CNN

  • 来源论文:Girshick, Ross, et al. “Rich feature hierarchies for accurate object detection and semantic segmentation.” Proceedings of the IEEE conference on computer vision and pattern recognition. 2014.
  • 论文详解:R-CNN论文详解
  • 代码实现:R-CNN代码

Fast R-CNN

  • 来源论文:Girshick, Ross. “Fast r-cnn.” Proceedings of the IEEE international conference on computer vision. 2015.
  • 论文详解:Fast R-CNN论文详解
  • 代码实现:Fast R-CNN代码

Faster R-CNN

  • 来源论文:Ren, Shaoqing, et al. “Faster r-cnn: Towards real-time object detection with region proposal networks.” Advances in neural information processing systems 28 (2015).
  • 论文详解:一文读懂Faster RCNN
  • 代码实现:Faster R-CNN代码实现

YOLO

YOLO v1

  • 来源论文:YOLO v1论文
  • 论文详解:YOLO v1详解
  • 代码实现:YOLO v1代码实现

YOLO v2

  • 来源论文:YOLO v2论文
  • 论文详解:YOLO v2详解
  • 代码实现:YOLO v2代码实现

YOLO v3

  • 来源论文:YOLO v3论文
  • 论文详解:YOLO v3详解
  • 代码实现:YOLO v3代码

YOLO v4

  • 来源论文:YOLO v4论文
  • 论文详解:YOLO v4详解
  • 代码实现:YOLO v4代码

RNN的经典算法

RNN

  • 来源论文:Sherstinsky, Alex. “Fundamentals of recurrent neural network (RNN) and long short-term memory (LSTM) network.” Physica D: Nonlinear Phenomena 404 (2020): 132306.
  • 论文详解:通俗易懂的RNN
  • 代码实现:RNN代码

GRU

  • 来源论文:Dey, Rahul, and Fathi M. Salem. “Gate-variants of gated recurrent unit (GRU) neural networks.” 2017 IEEE 60th international midwest symposium on circuits and systems (MWSCAS). IEEE, 2017.
  • 论文详解:GRU(门控循环单元),易懂
  • 代码实现:GRU代码

LSTM

  • 来源论文:Huang, Zhiheng, Wei Xu, and Kai Yu. “Bidirectional LSTM-CRF models for sequence tagging.” arXiv preprint arXiv:1508.01991 (2015).
  • 论文详解:如何从RNN起步,一步一步通俗理解LSTM
  • 代码实现:LSTM代码实现

Encoder-Decoder

  • 来源论文:Badrinarayanan, Vijay, Alex Kendall, and Roberto Cipolla. “Segnet: A deep convolutional encoder-decoder architecture for image segmentation.” IEEE transactions on pattern analysis and machine intelligence 39.12 (2017): 2481-2495.
  • 论文详解:Encoder-Decoder 模型架构详解
  • 代码实现:Encoder-Decoder代码实现

Attention

  • 来源论文:Knudsen, Eric I. “Fundamental components of attention.” Annu. Rev. Neurosci. 30 (2007): 57-78.
  • 论文详解:注意力机制介绍(attention)
  • 代码实现:Attention代码

Transformer

  • 来源论文:Kitaev, Nikita, Łukasz Kaiser, and Anselm Levskaya. “Reformer: The efficient transformer.” arXiv preprint arXiv:2001.04451 (2020).
  • 论文详解:Transform详解
  • 代码实现:Transformer代码
http://www.lryc.cn/news/139535.html

相关文章:

  • 开源TTS+gtx1080+cuda11.7+conda+python3.9吊打百度TTS
  • 【私有GPT】CHATGLM-6B部署教程
  • 基于“R语言+遥感“水环境综合评价方法教程
  • To_Heart—题解——P6234 [eJOI2019] T形覆盖
  • [软件工具]精灵标注助手目标检测数据集格式转VOC或者yolo
  • Spring BeanName自动生成原理
  • 论文阅读_图形图像_U-NET
  • 基于热交换算法优化的BP神经网络(预测应用) - 附代码
  • 基于秃鹰算法优化的BP神经网络(预测应用) - 附代码
  • 2.文章复现《热电联产系统在区域综合能源系统中的定容选址研究》(附matlab程序)
  • 如何开启esxi主机的ssh远程连接
  • Android Studio实现解析HTML获取json,解析json图片URL,将URL存到list,进行瀑布流展示
  • Centos7 交叉编译QT5.9.9源码 AArch64架构
  • 爬虫逆向实战(二十)--某99网站登录
  • 【C# 基础精讲】LINQ to Objects查询
  • 【力扣】209. 长度最小的子数组 <滑动窗口>
  • 帮助中心应该用什么工具做?
  • 前端面试:【跨域与安全】跨域问题及解决方案
  • 【SQL中DDL DML DQL DCL所包含的命令】
  • LeetCode150道面试经典题-- 二叉树的最大深度(简单)
  • 【C++11】future和async等
  • Linux 系统下 GDB 调试器的使用
  • 个人首次使用UniAPP使用注意事项以及踩坑
  • VSCode 如何解决 scanf 的输入问题——Code is already running!
  • 短视频seo源码矩阵系统开源---代码php分享
  • 【docker】中文无法显示输入等问题解决方法
  • leetcode 1035. 不相交的线
  • Hystrix: 服务降级
  • 高精度运算(加减乘除乘法)
  • Mysql数据库技术知识整理