深度学习入门(5) - RNN

Recurrent Neural Network

Process Sequences!

Sequential processing of non-sequential data

h t = f W ( h t − 1 , x t ) h_t = f_W(h_{t-1},x_t) ht=fW(ht1,xt)

new state is calculated by f on old state and input x t x_t xt

y t = f W y ( h t ) y_t = f_{W_y}(h_t) yt=fWy(ht)

and output is a applying another function f on h_t

same function and the same set of parms are used at every time step

Vanilla RNN

请添加图片描述

Truncated Backpropagation Trough Time

Backpropagation through time takes too much memory for long sequences

Instead, do the backpropagtion in truncated chunks.

Make it feasible to train

LSTM (Long Short Term Memory)

请添加图片描述

一个LSTM很详细的讲解!

https://blog.csdn.net/qian99/article/details/88628383

相关推荐

  1. 深度学习 - RNN训练过程推演

    2024-04-25 16:34:06       8 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-04-25 16:34:06       16 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-04-25 16:34:06       16 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-04-25 16:34:06       15 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-04-25 16:34:06       18 阅读

热门阅读

  1. 代码随想录第34天: 贪心part03

    2024-04-25 16:34:06       12 阅读
  2. 济南软件企业认定标准

    2024-04-25 16:34:06       13 阅读
  3. 前端中的同步和异步任务详细说明

    2024-04-25 16:34:06       15 阅读
  4. C#WPF通过串口(232协议)调用基恩士打标机进行打标

    2024-04-25 16:34:06       10 阅读
  5. 常用的 Spring Boot 注解及其作用

    2024-04-25 16:34:06       13 阅读
  6. 英语语法速成(4)

    2024-04-25 16:34:06       11 阅读
  7. 李沐63_束搜索——自学笔记

    2024-04-25 16:34:06       14 阅读
  8. 用Python搭建一个猜数字小游戏

    2024-04-25 16:34:06       15 阅读
  9. - 实际案例演示Single-Spa的使用步骤

    2024-04-25 16:34:06       11 阅读
  10. C++人工智能程序01A版本

    2024-04-25 16:34:06       13 阅读
  11. uniapp实现相册、拍照及视频录制功能

    2024-04-25 16:34:06       13 阅读