Methods › Sequential › Recurrent Neural Networks › ConvLSTM
ConvLSTM
Introduced by Xingjian Shi et al. in Convolutional LSTM Network: A Machine Learning Approach for Precipitation Nowcasting
archive 2025-07-28 Description, source and code snippet are the archive's method entry.
ConvLSTM is a type of recurrent neural network for spatio-temporal prediction that has convolutional structures in both the input-to-state and state-to-state transitions. The ConvLSTM determines the future state of a certain cell in the grid by the inputs and past states of its local neighbors. This can easily be achieved by using a convolution operator in the state-to-state and input-to-state transitions (see Figure). The key equations of ConvLSTM are shown below, where ∗ denotes the convolution operator and ⊙ the Hadamard product:
iₜ = σ(Wₓᵢ ∗ Xₜ + Wₕᵢ ∗ Hₜ₋₁ + W_(ci) ⊙𝒞ₜ₋₁ + bᵢ)
fₜ = σ(W_(xf) ∗ Xₜ + W_(hf) ∗ Hₜ₋₁ + W_(cf) ⊙𝒞ₜ₋₁ + b_f)
𝒞ₜ = fₜ ⊙𝒞ₜ₋₁ + iₜ ⊙tanh(W_(xc) ∗ Xₜ + W_(hc) ∗ ℋₜ₋₁ + b_c)
oₜ = σ(Wₓₒ ∗ Xₜ + Wₕₒ ∗ ℋₜ₋₁ + W_(co) ⊙𝒞ₜ + bₒ)
ℋₜ = oₜ ⊙tanh(Cₜ)
If we view the states as the hidden representations of moving objects, a ConvLSTM with a larger transitional kernel should be able to capture faster motions while one with a smaller kernel can capture slower motions.
To ensure that the states have the same number of rows and same number of columns as the inputs, padding is needed before applying the convolution operation. Here, padding of the hidden states on the boundary points can be viewed as using the state of the outside world for calculation. Usually, before the first input comes, we initialize all the states of the LSTM to zero which corresponds to "total ignorance" of the future.
Papers archive 2025-07-28
30 shown of 145, newest first. Repository counts are the archive's code-links table. A Syntology line states what Syntology ran from that paper's harvested code; it is per sample and not a correctness claim.
-
FINN-GL: Generalized Mixed-Precision Extensions for FPGA-Accelerated LSTMs 25 Jun 2025 · 0 repositories · arXiv:2506.20810
-
ReCoGNet: Recurrent Context-Guided Network for 3D MRI Prostate Segmentation 24 Jun 2025 · 0 repositories · arXiv:2506.19687
-
Residual Connection-Enhanced ConvLSTM for Lithium Dendrite Growth Prediction 21 Jun 2025 · 0 repositories · arXiv:2506.17756
-
Deep Learning Weather Models for Subregional Ocean Forecasting: A Case Study on the Canary Current Upwelling System 30 May 2025 · 0 repositories · arXiv:2505.24429
-
Convolutional Long Short-Term Memory Neural Networks Based Numerical Simulation of Flow Field 21 May 2025 · 0 repositories · arXiv:2505.15533
-
CTP: A hybrid CNN-Transformer-PINN model for ocean front forecasting 16 May 2025 · 0 repositories · arXiv:2505.10894
-
Domain Knowledge Integrated CNN-xLSTM-xAtt Network with Multi Stream Feature Fusion for Cuffless Blood Pressure Estimation from Photoplethysmography Signals 13 May 2025 · 1 repository
-
Global Climate Model Bias Correction Using Deep Learning 27 Apr 2025 · 0 repositories · arXiv:2504.19145
-
How to systematically develop an effective AI-based bias correction model? 21 Apr 2025 · 0 repositories · arXiv:2504.15322
-
Advancing Video Anomaly Detection: A Bi-Directional Hybrid Framework for Enhanced Single- and Multi-Task Approaches 20 Apr 2025 · 0 repositories · arXiv:2504.14753
-
Exploring FMCW Radars and Feature Maps for Activity Recognition: A Benchmark Study 7 Mar 2025 · 0 repositories · arXiv:2503.05629
-
Regional climate projections using a deep-learning-based model-ranking and downscaling framework: Application to European climate zones 27 Feb 2025 · 0 repositories · arXiv:2502.20132
-
IoT-Based Real-Time Medical-Related Human Activity Recognition Using Skeletons and Multi-Stage Deep Learning for Healthcare 13 Jan 2025 · 1 repository · arXiv:2501.07039
-
TopoFormer: Integrating Transformers and ConvLSTMs for Coastal Topography Prediction 11 Jan 2025 · 0 repositories · arXiv:2501.06494
-
An End-to-End Two-Stream Network Based on RGB Flow and Representation Flow for Human Action Recognition 27 Nov 2024 · 0 repositories · arXiv:2411.18002
-
Video to Video Generative Adversarial Network for Few-shot Learning Based on Policy Gradient 28 Oct 2024 · 0 repositories · arXiv:2410.20657
-
Video Prediction Transformers without Recurrence or Convolution 7 Oct 2024 · 1 repository · arXiv:2410.04733
-
Dynamical system prediction from sparse observations using deep neural networks with Voronoi tessellation and physics constraint 31 Aug 2024 · 1 repository · arXiv:2409.00458
-
An Improved CovidConvLSTM model for pneumonia-COVID-19 detection and classification 21 Aug 2024 · 0 repositories · arXiv:2408.11507
-
FATE: Focal-modulated Attention Encoder for Temperature Prediction 21 Aug 2024 · 1 repository · arXiv:2408.11336
-
Comparing and Contrasting Deep Learning Weather Prediction Backbones on Navier-Stokes and Atmospheric Dynamics 19 Jul 2024 · 1 repository · arXiv:2407.14129Syntology ran 1 of 2 samples · 1 unverified
-
Global Spatial-Temporal Information-based Residual ConvLSTM for Video Space-Time Super-Resolution 11 Jul 2024 · 0 repositories · arXiv:2407.08466
-
Deformable Feature Alignment and Refinement for Moving Infrared Dim-small Target Detection 10 Jul 2024 · 0 repositories · arXiv:2407.07289
-
Deep Learning for Prediction and Classifying the Dynamical behaviour of Piecewise Smooth Maps 24 Jun 2024 · 0 repositories · arXiv:2406.17001
-
Generalization capabilities and robustness of hybrid models grounded in physics compared to purely deep learning models 27 Apr 2024 · 1 repository · arXiv:2404.17884
-
Vestibular schwannoma growth prediction from longitudinal MRI by time conditioned neural fields 3 Apr 2024 · 1 repository · arXiv:2404.02614
-
Predicting machine failures from multivariate time series: an industrial case study 27 Feb 2024 · 0 repositories · arXiv:2402.17804
-
PolypNextLSTM: A lightweight and fast polyp video segmentation network using ConvNext and ConvLSTM 18 Feb 2024 · 1 repository · arXiv:2402.11585
-
Short-term Precipitation Forecasting in The Netherlands: An Application of Convolutional LSTM neural networks to weather radar data 2 Dec 2023 · 1 repository · arXiv:2312.01197
-
Forecasting Post-Wildfire Vegetation Recovery in California using a Convolutional Long Short-Term Memory Tensor Regression Network 4 Nov 2023 · 0 repositories · arXiv:2311.02492
Tasks archive 2025-07-28
20 shown of 170 tasks the archive attaches to papers tagged with this method, by distinct papers. A task without a page in the catalog is plain text.
Usage over time archive 2025-07-28
Components: the archive holds no method-to-method composition, so PwC's Components table cannot be rebuilt; the Papers list carries no Results column for the same reason (the archive does not join its leaderboard rows to method tags).
Categories archive 2025-07-28
Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections