Views
No views yet
mamba3-mimo-444m is a pretrained causal language model with 444M
parameters. It is built from stacked blocks, each containing a Mamba-3
MIMO mixer followed by a gated MLP. It contains no attention layers and
is released with BF16 weights in the public mamba_ssm checkpoint format.| Property | Value |
|---|---|
| Parameters | 444M |
| Layers | 24 |
| Model dimension | 1,024 |
| SSM state size | 128 |
| SSM head dimension | 64 |
| SSM heads | 32 |
| SSM groups | 1 |
| MIMO rank | 4 |
| Chunk size | 16 |
| Context length | 2,048 |
meta-llama/Llama-3.1-8B tokenizer.pip install git+https://github.com/state-spaces/mamba.git --no-build-isolationhf auth login1import torch
2from transformers import AutoTokenizer
3from mamba_ssm.models.mixer_seq_simple import MambaLMHeadModel
4
5model_id = "state-spaces/mamba3-mimo-444m"
6
7tokenizer = AutoTokenizer.from_pretrained(
8 "meta-llama/Llama-3.1-8B",
9)
10
11model = MambaLMHeadModel.from_pretrained(
12 model_id,
13 device="cuda",
14 dtype=torch.bfloat16,
15)
16model.eval()
17
18input_ids = tokenizer(
19 "Mamba-3 is",
20 return_tensors="pt",
21).input_ids.cuda()
22
23with torch.inference_mode():
24 logits = model(input_ids).logits
25
26print(logits.shape)1@misc{lahoti2026mamba3improvedsequencemodeling,
2 title = {Mamba-3: Improved Sequence Modeling using State Space Principles},
3 author = {Aakash Lahoti and Kevin Y. Li and Berlin Chen and
4 Caitlin Wang and Aviv Bick and J. Zico Kolter and
5 Tri Dao and Albert Gu},
6 year = {2026},
7 eprint = {2603.15569},
8 archivePrefix = {arXiv},
9 primaryClass = {cs.LG},
10 url = {https://arxiv.org/abs/2603.15569}
11}