moe-expert-omni-4b is a specialized 4-billion parameter Small Language Model (SLM), LoRA fine-tuned on the LUMI-G Supercomputer (8× AMD Instinct™ MI250X GCDs (4× physical modules, 64GB HBM2e per GCD)).
Within the MoE Sovereign compound AI architecture, this model serves strictly as the Architectural Synthesizer & Cross-Domain Interface Harmonizer. It is not a generalist model designed to replace domain specialists. Instead, its explicit design role is to take structured outputs from multiple specialized experts (Coder, Security, DataInfra, Governance, Precision, GraphRAG), resolve cross-domain interface mismatches, flag semantic tensions, and compile them into a unified, coherent system architecture.
ℹ️ Evaluation Status: Evaluated on held-out validation splits ($N=1,000$, zero training contamination). Full cross-architecture ablation suites across Compound AI vs. Monolithic LLMs are undergoing active execution in the Sovereign Scientific Benchmark Suite v1.
Evaluated on a held-out benchmark suite of 1,000 multi-expert synthesis and system integration tasks with zero training overlap:
Evaluation Metric
Base Stock Qwen 3.5 4B
moe-expert-omni-4b (Distilled)
Delta ($\Delta$)
API / Interface Contract Harmonization Rate
64.1 %
96.2 %
+32.1 %
Cross-Domain Conflict Detection (Recall)
52.8 %
94.5 %
+41.7 %
Architectural Coherence & Consistency
67.5 %
95.8 %
+28.3 %
Synthesized Mermaid Diagram Validity
71.0 %
98.7 %
+27.7 %
Epistemic Discipline (No Fact Hallucination)
60.3 %
96.1 %
+35.8 %
OpenAPI 3.1 Syntax & Schema Validity
68.2 %
97.4 %
+29.2 %
Note: Evaluated at temperature=0.1 across 3 independent seeds. Evaluated on multi-agent merge tasks combining 2 to 6 disparate domain expert outputs.
Not a Standalone Domain Specialist: Omni should not be called in isolation for deep mathematical proofs, raw kernel driver writing, or standalone regulatory audits without expert inputs.
Upstream Contradiction Resolution: When two expert outputs present an irreconcilable factual stalemate, Omni surfaces the dispute for the Sovereign Judge (Belnap-Dunn consensus) rather than making an arbitrary decision.
Context Length Handling: Trained for multi-turn context maintenance at context lengths up to 256k; for architectures involving more than 8 simultaneous expert tracks, two-pass hierarchical synthesis in the orchestrator is recommended.
💻 Quickstart Guide (Ollama & Llama.cpp)
1. Ollama Modelfile
dockerfile
1FROM ./moe-expert-omni-4b-Q4_K_M.gguf2PARAMETER num_ctx 262144
3PARAMETER temperature 0.1
4TEMPLATE """{{ if .System }}<|im_start|>system
5{{ .System }}<|im_end|>
6{{ end }}{{ if .Prompt }}<|im_start|>user
7{{ .Prompt }}<|im_end|>
8{{ end }}<|im_start|>assistant
9{{ .Response }}<|im_end|>"""
2. Python Inference
python
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
34model_id ="h3rb3rn/moe-expert-omni-4b"56tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)7model = AutoModelForCausalLM.from_pretrained(8 model_id,9 torch_dtype=torch.bfloat16,10 device_map="auto",11 trust_remote_code=True12)1314prompt ="<|im_start|>user\nHarmonize the provided Coder REST API endpoints and Security RBAC policies into a unified OpenAPI 3.1 specification.<|im_end|>\n<|im_start|>assistant\n"15inputs = tokenizer(prompt, return_tensors="pt").to(model.device)16outputs = model.generate(**inputs, max_new_tokens=512, temperature=0.1)17print(tokenizer.decode(outputs[0], skip_special_tokens=True))
📑 Citation
bibtex
1@misc{moe_sovereign_2026_omni4b,
2 author = {Horn, Philipp and MoE Sovereign Core AI Team},
3 title = {MoE Sovereign Omni Expert 4B: Cross-Domain Architectural Synthesis SLM},
4 year = {2026},
5 publisher = {Hugging Face},
6 howpublished = {\url{https://huggingface.co/h3rb3rn/moe-expert-omni-4b}},
7 note = {Trained on the EuroHPC LUMI-G Supercomputer}
8}