A compact-but-capable ≈400M parameter causal LM that replaces dot-product attention with metric-native attention and augments sequence geometry with BlackHoleRoPE (a learnable, stable RoPE variant). Designed to train and run on modest hardware (CPU-first friendly) while staying fully compatible with 🤗 Transformers.
• Distance scores, not dot products. Heads score with L2, cosine, or diag-Mahalanobis distances. This gives direct control over geometry, often stabilizes training, and can be more sample-efficient.
• BlackHoleRoPE positional encoding.
• Q/K: pure unit-modulus rotation (unitary → numerically stable).
• V: bounded-energy gating (Penrose-inspired), optionally modulated by a discrepancy signal.
• Parameters synthesized from a tiny Fourier basis → extrapolable and cache-friendly, with low memory.
• MoA (Mixture-of-Architectures) block. Token-wise router softly blends four heads per block:
1. LocalConv (depthwise token-local conv)
2. MetricMHAttention (multi-head metric attention)
3. ChannelMix (MLP)
4. MetricMQA (multi-query, shared K/V)
• Triangle-Inequality (TI) regularizer. Keeps metric heads honest by penalizing violations over random triples.
• Runs on CPUs. Implemented to behave well in FP32 on AVX2/AVX-512 machines.
⸻
Model at a glance
Property Value
Parameters ~400 M (exact count depends on vocab; see config.json)
Layers 12–24 depending on variant (MoA blocks)
Hidden size ≥ 1024 in the 400 M variant (head dim divisible by #heads)
Attention Metric-native (L2 / cosine / diag-Mahalanobis), plus MetricMQA
Positional BlackHoleRoPE per-head (rope_global for MH-Attn, rope_mqa for MQA)
Router Token-wise soft mixture across the four heads (+ optional bias gate)
FFN HyperFFN = SwiGLU MLP + SepConv1d + Low-Rank path (router-mixed)
Context Trained primarily at 512–1024 tokens; config allows up to 2048
Precision Training FP32 (CPU-friendly); inference FP32/BF16/FP16 supported
License Apache-2.0
Note on context: training emphasized 512–1024; BlackHoleRoPE is extrapolable, but throughput and quality beyond training lengths depend on your hardware and data.
⸻
Intended use & limitations
Intended: compact assistants, long-context reading/QA, math-style step reasoning, research on distance-based attention and geometric inductive biases.
Not intended: safety-critical use, heavy factual QA at web scale, or domains requiring guaranteed accuracy. Evaluate carefully before deployment.
⸻
Datasets
• Agentic-Long-Context-Understanding-QA — long-range reading/retrieval questions to exercise context tracking. ~256000 tokens
• MATH-500 — small curated math prompts for stepwise reasoning. ~256000 tokens
Training used modest token budgets (hundreds of thousands). Reported training logs showed healthy loss descent on both 512 and 1024 sequence lengths on CPU runs. Exact metrics will vary with tokenizer, preprocessing, and optimizer settings.
⸻
python
1Installation
23pip install transformers accelerate sentencepiece
456⸻
78Quick start
910from transformers import AutoTokenizer, AutoModelForCausalLM
11import torch
1213repo ="reaperdoesntknow/MoA-400M"# replace with your repo id1415tok = AutoTokenizer.from_pretrained(repo)16model = AutoModelForCausalLM.from_pretrained(17 repo, torch_dtype=torch.float32, device_map="cpu"18).eval()1920prompt ="Read and answer: If 3x + 2 = 17, what is x?\nReasoning:"21inputs = tok(prompt, return_tensors="pt")2223with torch.no_grad():24 out = model.generate(25**inputs,26 max_length=256,27 do_sample=True,28 top_p=0.9,29 temperature=0.8,30 pad_token_id=tok.eos_token_id,31)3233print(tok.decode(out[0], skip_special_tokens=True))3435Pipeline usage
3637from transformers import pipeline
38repo ="reaperdoesntknow/MoA-400M"39pipe = pipeline("text-generation", model=repo, device_map="cpu")40print(41 pipe(42"Question: Who wrote 'The Selfish Gene'?\nAnswer:",43 max_length=128,44 do_sample=False,45)[0]["generated_text"]46)47
⸻
Architecture details
Metric attention (MH)
• Scores:
• L2: -||q-k||² / sqrt(d)
• Cosine: normalized dot → scaled
• diag-Mahalanobis: per-head diagonal scale on dimensions
• Stability: logits scaled by a learnable α; optional radius-based pruning mask for efficiency.
• Value path: post-attention Up/Down projector (gated) for expressive value mixing.
Metric MQA (shared K/V)
• K and V are shared (single projection) and broadcast; queries remain multi-head. Useful for throughput and memory.
BlackHoleRoPE
• Q/K rotation only (unit modulus) → preserves norms; avoids value blow-ups.
• V receives bounded-energy amplification (energy_min..energy_max) with optional discrepancy modulation.
• Parameters synthesized from a small Fourier basis; reduces cache size and improves length generalization.
Routing & gates
• TokenRouter: per-token weights over {LocalConv, MetricMH, ChannelMix, MetricMQA}.
• Feature gates: per-head multiplicative scales in (0, 2) around 1.0.
• Optional router bias adds signed offsets before softmax.
Triangle-Inequality regularizer
• Lightweight penalty on random triples to discourage degenerate metric geometry.
⸻
Training recipe (reference)
• Device: CPU (AVX2/AVX-512 recommended).
• Precision: FP32.
• Optimizer: AdamW or Adam (β₁=0.9, β₂=0.95–0.999 work); cosine LR or linear warmup.
• Batch/seq: [batch, seq] = [2–4, 512–1024].
• Regularization: modest dropout in attention/value paths; optional TI penalty.
If you see NaN/Inf during sampling, ensure masks are additive 0/-inf, clamp logits when rows are fully masked, and set a pad_token_id in .generate().
⸻
Evaluation notes
The model targets behavioral quality per FLOP rather than leaderboard chasing. On held-out long-context QA and small math checks, it shows:
• Robust token-to-token coherence at 512–1024.
• Stable generation on CPU with FP32.
• Competitive loss trends versus dot-product baselines trained under the same compute.
Please share issues/benchmarks via the repo so results can be tracked.
Known behaviors / tips
• Context > 1024: works, but CPU throughput drops; BlackHoleRoPE helps stability, not throughput.
• Sampling: always pass pad_token_id (often eos_token_id) to .generate(); avoid temperature > 1.2 on small models.
• KV cache: supported; for CPU you may prefer smaller beams and greedy/small-temperature sampling.
⸻
Safety & responsibility
This is a research model. It was trained on public datasets and may produce incorrect or biased content. Do not rely on it for advice or sensitive decisions.
⸻
Citation
@software{moa_metric_lm_400m,
title = {MoA-Metric-LM-400M: Distance-based attention with BlackHoleRoPE},
author = {reaperdoesntknow},
year = {2025},
url = {https://huggingface.co/reaperdoesntknow/MoA-400M}
}
⸻
Acknowledgements
Built with 🤗 Transformers and a metric-first rethinking of attention. BlackHoleRoPE draws inspiration from symplectic/rotational encodings and bounded-energy dynamics.
Convergent Intelligence Portfolio
Part of the Mixture of Attention Series by Convergent Intelligence LLC: Research Division
Total Portfolio: 41 models | 2,781 total downloads
Last updated: 2026-03-28 12:57 UTC
From the Convergent Intelligence Portfolio
DistilQwen Collection — Our only BF16 series. Proof-weighted distillation from Qwen3-30B-A3B → 1.7B and 0.6B on H100. Three teacher variants (Instruct, Thinking, Coder), nine models, 2,788 combined downloads. The rest of the portfolio proves structure beats scale on CPU. This collection shows what happens when you give the methodology real hardware.
This model is part of the Convergent Intelligence LLC: Research Division portfolio. All models in this portfolio are developed under the Discrepancy Calculus (DISC) framework — a measure-theoretic approach to understanding and controlling the gap between what a model should produce and what it actually produces.
DISC treats training singularities (loss plateaus, mode collapse, catastrophic forgetting) not as failures to be smoothed over, but as structural signals that reveal the geometry of the learning problem. Key concepts:
Discrepancy Operator (D): Measures the gap between expected and observed behavior at each training step
Jump Sets: Boundaries where model behavior changes discontinuously — these are features, not bugs
Ghost Imprinting: Teacher knowledge that transfers to student models through weight-space topology rather than explicit distillation signal