State space models (SSMs) have become strong competitors to Transformers, especially on long-sequence tasks. Their core operation is recurrence along the sequence dimension—each timestep's state depends on the previous one. But in this paper, Farsang, Hasani, Rus, and Grosu (MIT CSAIL + TU Wien) explore a different, often overlooked dimension of recurrence in SSMs: recurrence along the depth axis.
The idea
The standard approach stacks L SSM blocks, each with its own parameters. The new approach uses just a single SSM block (with k parameters) and loops it L times along the depth dimension. In other words, the same parameter block is reused L times.
Theory vs. practice
The theoretical result: the looped model's hypothesis space is strictly smaller than that of the parameter-independent model (the latter contains the former as a special case). Yet the experimental result is the opposite: across 4 SSM architectures (LRU, S5, LinOSS, LrcSSM) and 6 time series classification benchmarks, the looped model consistently matches or exceeds the parameter-independent one. Since the larger model contains the smaller one, this advantage cannot come from expressivity. The conclusion is that parameter sharing forms a beneficial inductive bias along the depth dimension, simplifying optimization.
Input reshaping
The paper also digs into another neglected design axis: input reshaping.
- For low-dimensional inputs, concatenate consecutive timesteps to increase per-step information density.
- For high-dimensional inputs, flatten the joint feature-time dimension and re-chunk it.
- How to determine the optimal number of loops L—does it relate to the timescale of the task?
- The specific input reshaping strategies (concatenation scheme, chunk size) depend on dataset characteristics. Is there a general heuristic?
- Does depth recurrence still help on non-time-series tasks such as natural language processing?
Both methods yield 1–6% accuracy improvements across all models. Depth recurrence and input reshaping are independent improvements, and their benefits stack when combined.
Open questions
References
1. Farsang, M., Hasani, R., Rus, D., & Grosu, R. (2026). *Looped SSMs: Depth-Recurrence and Input Reshaping for Time Series Classification*. arXiv:2605.16048 [cs.LG]. 2. Gu, A., & Dao, T. (2023). *Mamba: Linear-Time Sequence Modeling with Selective State Spaces*. NeurIPS. 3. Lan, Z., et al. (2020). *ALBERT: A Lite BERT for Self-Supervised Learning of Language Representations*. ICLR.