🎯 DOI: 10.5281/zenodo.22217820 📜 License: CC BY-NC-ND 4.0 ⚡ SOTA Inference Throughput (5.55 tok/s)

QU-SSM-MoE Research Studio

Continuous Quasi-Unitary Lie-Group State Space Models with Sparse Mixture-of-Experts. Eliminates dissipative memory decay while delivering strictly constant O(1) inference memory.

👤 Sole Architect & Inventor: Prannessh K.V.A.
🏆 Official SOTA Hardware Inference Benchmark (~135M Scale)

Head-to-head empirical evaluation loading real weights directly from Hugging Face Hub under unpadded live execution:

Model Architecture Total Parameters Active Params / Token Generation Speed Step Latency RAM at L=8,192
SmolLM-135M (Hugging Face) 134.52M 134.52M (Dense) 1.67 tok/s 597.86 ms/tok 360.00 MB (Expanding)
Mamba-130M-HF (Albert Gu et al.) 129.14M 129.14M (Dense) 1.98 tok/s 506.18 ms/tok 0.19 MB (Constant)
QU-SSM-130M-MoE (Our Model) 134.89M 78.27M (Sparse Top-2) 5.55 tok/s (🥇 3.32x SOTA) 180.16 ms/tok 0.19 MB (🥇 1,894x Smaller)
⚛️ Live SO(2) Unitary Phase Clock

Visualizing pure 2D orthogonal matrix rotation on SO(2). Notice the radius norm is strictly preserved (‖R(θ)‖₂ ≡ 1.00000):

Input Voltage / Theta Scale: 0.75 rad/step
🌊 Mathematical Recurrence Engine

The state evolves as an exact dual-component log-prefix scan without complex numbers:

# Exact Real Dual-Component Recurrence
theta = clamp(W_theta(x) + theta_base, -pi, pi)
log_g = logsigmoid(W_gamma(x))

S   = cumsum(log_g, dim=1).clamp(min=-12, max=0)
Phi = cumsum(theta, dim=1)

u_real = x * exp(-S) * cos(Phi)
u_imag = -x * exp(-S) * sin(Phi)

# Reconstruct State (Strictly O(1) RAM)
h_t = exp(S) * (cos(Phi) * cumsum(u_real) 
              - sin(Phi) * cumsum(u_imag))

🌐 Universal Multimodal Sequence Suite

📝 Language & Code

Autoregressive causal token generation with Top-2 SwiGLU Mixture-of-Experts routing.

QUSSMForCausalLM

🎙️ Raw 16kHz Audio

1D acoustic pressure wave modeling. Preserves vocal formants without low-pass decay.

QUSSMForAudio

📈 Financial / Sensors

77,288 ticks/s throughput with lowest spectral phase error (1.9648 rad) on live LOB streams.

QUSSMForSensorTelemetry

🖼️ 2D Spatial Vision

Continuous 16x16 patch scanning with O(1) state space memory.

VisionQUSSM

📦 Open-Source Model Hub Releases

QU-SSM-130M-MoE

134.89M Total Params | 78.27M Active Params | 8 SwiGLU Experts | Top-2 Routing

View Flagship 130M Model ➔

QU-SSM-60M-MoE

64.30M Total Params | 44.64M Active Params | 4 SwiGLU Experts | Top-2 Routing

View Mid-Tier 60M Model ➔

QU-SSM-15M

29.80M Foundation Params | Dense SwiGLU Backbone | Embedded Edge Ready

View Foundation 15M Model ➔