About 2,100,000 results
Open links in new tab
  1. 如何最简单、通俗地理解LSTM? - 知乎

    lstm - 小结. 以上,就是lstm的基本原理推导的讲解了。请试着用自己的语言回答下面的问题: lstm的3个门控,是哪三个。它们分别有什么作用; 记忆胞体 c 的更新公式怎么写? 记忆胞体 …

  2. [干货]深入浅出LSTM及其Python代码实现 - 知乎

    May 12, 2022 · 当前的lstm接收来自上一个时刻的细胞状态 ,并与当前lstm接收的信号输入 共同作用产生当前lstm的细胞状态 ,具体的作用方式下面将详细介绍。 在LSTM中,采用专门设计 …

  3. A survey on long short-term memory networks for time series …

    Jan 1, 2021 · The key findings are summarized as follows: ï‚· LSTM with optimized cell state representations, such as hierarchical and attention-based LSTM, show an improved ability to …

  4. Long Short-Term Memory Network - an overview - ScienceDirect

    Jul 7, 2020 · LSTM outperformed other models such as support vector regression (SVR), autoregressive integrated moving average (ARIMA), and bidirectional long, short term memory …

  5. 循环神经网络详解(RNN/LSTM/GRU) - 知乎

    Jan 11, 2024 · LSTM(Long Short-Term Memory)是一种改进的循环神经网络(RNN)架构,旨在解决传统 RNN 中的梯度消失和梯度爆炸问题,以及增强对长期依赖关系的建模能力。 …

  6. RNN-LSTM: From applications to modeling techniques and …

    Jun 1, 2024 · LSTM has been specifically designed to address the issue of vanishing gradients, which makes vanilla RNNs unsuitable for learning long-term dependencies (Jaydip and Sidra, …

  7. 如何理解LSTM,对于一个时序序列,他是怎么训练的? - 知乎

    使用RNN或者LSTM预测时间序列与NLP有些许不同。拿Pytorch为例。 时间序列建模,最重要的一个超参数就是order,也就是对过去多少点做自回归。当我们使用非循环模型的时候,输入就 …

  8. LSTM模型到底有什么用啊? - 知乎

    对标rnn的ht隐藏状态的更新,lstm的ct只是多个些“门控”删除或添加信息到状态信息。由下面依次介绍lstm的“门控”:遗忘门,输入门,输出门的 功能,lstm的原理也就好理解了。 2.2 遗忘门. …

  9. Long Short-Term Memory - an overview | ScienceDirect Topics

    Long short-term memory (LSTM) (Hochreiter and Schmidhuber, 1997) is a variant of recurrent neural networks (RNNs) that has already been discussed in Section 5 and illustrated in Fig. 8. …

  10. 如何理解 LSTM 中的 cell state 和 hidden state? - 知乎

    LSTM神经元在时间维度上向后传递了两份信息:(1)cell state;(2)hidden state。 hidden state是cell state经过一个神经元和一道“输出门”后得到的,因此hidden state里包含的记忆,实际上是cell …