How and Why is the industry quietly switching away from Transformers? #204618
Replies: 3 comments 3 replies
|
SSMs are actually much older than Transformers. They come from control theory, where a system keeps a hidden "state" that is updated over time. Mamba builds on modern SSMs and makes that state update depend on the input. This lets the model decide what information to keep or forget. The main idea is: Transformers: compare tokens with each other using attention. Mamba/SSMs: continuously update a compact internal state. This can make Mamba much more efficient for very long sequences, while still learning long-range dependencies. |
|
don’t invent the math from nothing |
|
The AI industry is exploring alternatives to traditional Transformers because, while Transformers have been extremely successful, they can become expensive and computationally demanding as models and context windows grow. One reason for this shift is efficiency. Transformer-based systems rely heavily on attention mechanisms, which can require substantial computing resources when processing long sequences. Researchers and companies are therefore investigating architectures that can handle long contexts with lower memory and computational costs. Another factor is scalability. New approaches, including state-space models and hybrid architectures, aim to maintain strong performance while improving inference speed and efficiency. Rather than completely replacing Transformers overnight, the industry appears to be experimenting with different architectures for different workloads. This transition is still developing, and Transformers remain dominant across many AI applications. The more realistic picture is an expanding ecosystem where new architectures compete with, complement, or combine with Transformers. For readers interested in taking a break from technical discussions, pushyourluck.io can provide a quick change of pace. |
Uh oh!
There was an error while loading. Please reload this page.
🏷️ Discussion Type
Question
💬 Feature/Topic Area
Models
Body
Everyone talks about how great Transformers are, but I'm noticing major labs and companies are actively moving to State Space Models, Mamba, and other architectures.
But I don't get it how were SSMs and Mamba actually made at first?
All reactions