Model reference · open weights
QU-SSM-MoE is an open-weight language model from Prannesshkva. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | Prannesshkva |
|---|---|
| Type | Language models |
| Task | Text gen · MoE |
| Parameters (lead) | 135M |
| Released | 2026-08-31 |
| Popularity | 2k downloads / month |
| Licence | Commercial licence needed |
About
📄 Official Research Paper (PDF) & Open Verification
Title: "Gated Quasi-Unitary Lie-Algebra Recurrent State Space Models" Author: Prannessh K.V.A. (
@prannesshkva)📥 Download Full Research Paper (PDF) | 🏛️ Zenodo DOI: 10.5281/zenodo.22283431 | 🎮 Live Interactive Space
QU-SSM-130M-MoE is a continuous quasi-unitary state space sequence architecture co-designed with sparse SwiGLU Mixture-of-Experts (MoE). Designed and invented by Prannessh K.V.A. (Sole Architect & Inventor), QU-SSM eliminates monotonic exponential memory dissipation present in classical real-valued SSMs while delivering strictly constant O(1) step memory (0.19 MB) and 3.32x generation speedup over modern baseline Transformers.
roneneldan/TinyStories (~20M+ tokens) to empirically validate non-dissipative recurrent memory and narrative coherence.QU-SSM is a state-of-the-art linear-time sequence engine that formulates state transitions as continuous Lie-group rotations over SO(2) ≅ U(1). Unlike classical real-decay state space models that suffer from exponential forgetting, QU-SSM preserves state norm (‖R(θ)‖₂ ≡ 1.00000) while dynamically decoupling memory damping (γ_t).
| Model Architecture | Total Params | Active Params / Token | Generation Speed | Step Latency | RAM at L=8,192 |
|---|---|---|---|---|---|
| Standard Dense Transformer Baseline (135M) | 134.52M | 134.52M (Dense) | 1.67 tok/s | 597.86 ms | 360.00 MB |
| Classical Real-Decay SSM Baseline (130M) | 129.14M | 129.14M (Dense) | 1.98 tok/s | 506.18 ms | 0.19 MB |
| QU-SSM-130M-MoE (Ours) | 134.89M | 78.27M (Top-2 Sparse) | 5.55 tok/s (🥇 3.32x) | 180.16 ms | 0.19 MB (🥇 Constant) |
The core recurrence equation evolves according to:
h_t = γ_t · R(θ_t) · h_{t-1} + u_t
Where:
S = cumsum(log γ_t).clamp(min=-12.0, max=0.0)
Φ = cumsum(θ_t)
h_t = exp(S) · [ cos(Φ) · cumsum(u_real) - sin(Φ) · cumsum(u_imag) ]
Run QU-SSM-130M-MoE directly using standard Hugging Face transformers:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "Prannesshkva/QU-SSM-130M-MoE"
model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained(model_id)
prompt = "Once upon a time in a world of state space models,"
input_ids = tokenizer(prompt, return_tensors="pt").input_ids
output = model.generate(input_ids, max_new_tokens=50)
print(tokenizer.decode(output[0]))
The QU-SSM backbone supports four continuous and discrete sequence interfaces:
| Modality | Python Class | Input Data Format |
|---|---|---|
| 📝 Language & Code | QUSSMForCausalLM | BPE Token IDs (50,257 Vocab) |
| 🎙️ Raw 16kHz Audio | QUSSMForAudio | Continuous 1D Waveform |
| 📈 Financial & Sensors | QUSSMForSensorTelemetry | Continuous Time-Series Ticks |
| 🖼️ 2D Spatial Vision | VisionQUSSM | 16x16 Pixel Patches |
Classical SSMs enforce negative real decay (A ∈ ℝ⁻), creating a dissipative low-pass filter that loses oscillatory and high-frequency phase information (e^(-α·t) → 0). QU-SSM uses dynamic Lie-group rotations over **SO(2
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys qu-ssm-moe for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (qu-ssm-moe below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/chat/completions \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"qu-ssm-moe","messages":[{"role":"user","content":"Hello"}]}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.