AwareLiquid — bio-inspired model family
Collection
M-series (hybrid + liquid adapter) and O-series (pure recurrent, O(1) state), plus connectome-inspired spiking networks. • 7 items • Updated
Honest status first: research backbone, not a chat model. M1-128M is the M-Series hybrid of the AwareLiquid research project — window attention + a liquid core (selective decay, exp parameterization) in every layer, 12 layers, d_model 832, trained from scratch on WikiText-103. English text continuation. Language-modeling quality is not the selling point (see below); the case is the liquid memory mechanisms.
| Result | Number |
|---|---|
| LM quality at convergence (20K steps, 3 seeds) | modern Transformer 78.86 ± 0.25 < MT-LNN 88.93 ± 0.33 < simple Transformer 94.14 ± 0.78 |
| Cross-window associative recall (fast-weight) | 0.56 vs 0.000 (attention/LoRA) |
| Cross-session snapshot/restore | bit-exact round-trip |
| O(1) inference state (attention-free O-series variant only) | 0.381 MB flat → 8,063× smaller than a KV-cache at 1M tokens |
The hybrid M-series is not O(1) (it keeps attention); the O(1) claim belongs to the attention-free O-series (O1-48M).
CKPT_PATH=hybrid_125m_serve.pt TOKENIZER=gpt2 python -m uvicorn serve.server:app