About 38,600 results
Open links in new tab
  1. Long short-term memory - Wikipedia

    Long short-term memory (LSTM) [1] is a type of recurrent neural network (RNN) aimed at mitigating the vanishing gradient problem [2] commonly encountered by traditional RNNs. Its relative insensitivity to …

  2. What is LSTM - Long Short Term Memory? - GeeksforGeeks

    Oct 7, 2025 · Long Short-Term Memory (LSTM) is an enhanced version of the Recurrent Neural Network (RNN) designed by Hochreiter and Schmidhuber. LSTMs can capture long-term …

  3. A Beginner's Guide to LSTMs and Recurrent Neural Networks

    Recurrent neural networks, of which LSTMs (“long short-term memory” units) are the most powerful and well known subset, are a type of artificial neural network designed to recognize patterns in …

  4. Long Short-Term Memory (LSTM) | NVIDIA Developer

    Memory of past input is critical for solving sequence learning tasks and Long short-term memory networks provide better performance compared to other RNN architectures by alleviating what is …

  5. 10.1. Long Short-Term Memory (LSTM) — Dive into Deep Learning 1

    Simple recurrent neural networks have long-term memory in the form of weights. The weights change slowly during training, encoding general knowledge about the data. They also have short-term …

  6. LSTMs Explained: A Complete, Technically Accurate, Conceptual

    Sep 2, 2020 · First off, LSTMs are a special kind of RNN (Recurrent Neural Network). In fact, LSTMs are one of the about 2 kinds (at present) of practical, usable RNNs — LSTMs and Gated Recurrent Units...

  7. LSTM Networks | A Detailed Explanation | Towards Data Science

    Oct 21, 2020 · LSTM networks were designed specifically to overcome the long-term dependency problem faced by recurrent neural networks RNNs (due to the vanishing gradient problem). LSTMs …

  8. What Is an LSTM Neural Network? - Coursera

    Jun 4, 2025 · An LTSM is a type of neural network that uses many different layers to employ gates, which can help the algorithm understand time series data by remembering or forgetting data as needed.

  9. Sequence Models and Long Short-Term Memory Networks

    Pytorch’s LSTM expects all of its inputs to be 3D tensors. The semantics of the axes of these tensors is important. The first axis is the sequence itself, the second indexes instances in the mini-batch, and …

  10. What is LSTM? Introduction to Long Short-Term Memory

    May 1, 2025 · LSTM (Long Short-Term Memory) is a recurrent neural network (RNN) architecture widely used in Deep Learning. It excels at capturing long-term dependencies, making it ideal for sequence …