Skip to content
 
 

Repository files navigation

mobius

PyPI CI L4: Golden Checkpoint Parity (GPU) L5: End-to-End Generation (GPU) Nightly L2 Architecture Validation Ruff

ONNX model definitions for GenAI using the onnxscript.nn API.

Overview

This package provides model definitions for generative AI architectures — LLMs, MoE, multimodal, encoder-only, encoder-decoder, vision, audio, and diffusion models — built directly as ONNX graphs using onnxscript.nn.Module. Rather than tracing or exporting PyTorch models, it constructs the ONNX graph declaratively, then applies pretrained HuggingFace weights.

Supports building ONNX models from HuggingFace model IDs with automatic weight downloading, dtype casting (including bfloat16 via ir.LazyTensor), and multi-component export for pipelines.

📖 Documentation · 📦 Supported Models

Highlighted Models

Category Examples
Text Generation Llama 2/3/4, Mistral, Qwen 2/2.5/3/3.5/3.6, Phi-3/3.5, Gemma 1/2/3/4, Granite, GPT-2, OPT, OLMo, SmolLM3, and many more
Mixture of Experts PhiMoE, GPTOSS, Mixtral, OLMoE, DeepSeek-V2/V3, Qwen2-MoE, Qwen3-MoE, Qwen3-Next, GLM-4-MoE, Arctic, DBRX, Jamba
Multimodal Gemma 3/4, Phi-4MM (vision + audio + LoRA), Nemotron Parse, LLaVA, InternVL2, Mage-VL (image + streaming video), MiniCPM-V 4.6, Qwen2.5-VL, Qwen3-VL, Qwen3.5/3.6-VL, Pixtral
Encoder-only BERT, RoBERTa, ALBERT, DeBERTa, DistilBERT, ELECTRA, XLNet
Encoder-Decoder BART, T5/mT5, Marian, M2M-100, Pegasus, BigBird-Pegasus
Speech-to-Text Whisper, Moonshine, FastConformer-RNNT, FunASR, GLM-ASR, Qwen3-ASR, SenseVoice
Audio Wav2Vec2, HuBERT, WavLM, SpeechT5
Vision ViT, BEiT, DeiT, DINOv2, Swin, CLIP, SigLIP
Diffusion Stable Diffusion (UNet + VAE + ControlNet), Flux, SD3, DiT, QwenImage / Qwen-Image-Edit-2509, HunyuanDiT, CogVideoX
Adapters T2I-Adapter, IP-Adapter

Mage-VL supports direct three-model ONNX export. ORT GenAI export is currently rejected because the runtime cannot supply its required patch_positions input or Mage-VL's 1D decoder positions.

Supports 290+ Transformers model types and 10 Diffusers component types across 40+ task types and 100+ reusable components.

See the model documentation for the complete list.

Installation

pip install -e .

For running tests:

pip install -e ".[testing]"

Quick Start

Python API

from mobius import build

# Build a model package with weights
pkg = build("meta-llama/Llama-3.2-1B")
pkg.save("output/llama-3.2-1b/")

Static cache (opt-in) pre-allocates fixed-size KV cache buffers, which is useful when you know the maximum sequence length up front:

from mobius import build, CausalLMTask

task = CausalLMTask(static_cache=True, max_seq_len=2048)
pkg = build("meta-llama/Llama-3.2-1B", task=task)
pkg.save("output/llama-3.2-1b-static/")

EP-aware optimization generates graphs tuned for a specific runtime execution provider. Pass execution_provider to target CUDA, DirectML, WebGPU, and more — each with the right set of fused kernels and lowering passes applied automatically:

from mobius import build

# CUDA: GQA fusion, SkipLayerNorm, PackQKV
pkg = build("meta-llama/Llama-3.2-1B",
            execution_provider="cuda", dtype="f16")

# WebGPU: GQA fusion, Shape ops replaced with portable alternatives
pkg = build("meta-llama/Llama-3.2-1B",
            execution_provider="webgpu", dtype="f16")

See the EP quickstart and full EP reference for all supported EPs and options.

CLI

mobius build --model Qwen/Qwen2.5-0.5B --output output_dir/

# Build for CUDA with f16
mobius build --model meta-llama/Llama-3.2-1B --output output_dir/ --ep cuda --dtype f16

# Build a diffusers pipeline (all components)
mobius build --model Qwen/Qwen-Image-2512 --output output_dir/

# Build encoder-decoder model (produces encoder/model.onnx + decoder/model.onnx)
mobius build --model openai/whisper-tiny --output output_dir/

Build-mode toggles use the cargo-style --features option. Available features are static-cache, fp8-kv-cache, prune-prefill-prefix, and text-only. Pass them as a comma-separated list or repeat the option:

mobius build --model meta-llama/Llama-3.2-1B --output output_dir/ \
      --features static-cache,prune-prefill-prefix --max-seq-len 2048

Use --release with either build or build-gguf to potentially reduce saved model size by stripping build-time debug and provenance metadata. Functional metadata with keys prefixed by mobius. is preserved:

mobius build --model meta-llama/Llama-3.2-1B --output output_dir/ --release
mobius build-gguf model.gguf --output output_dir/ --release

See the CLI Reference for all subcommands and flags.

Examples

Architecture

flowchart TD
    Sources["Model sources<br/>Transformers · Diffusers · GGUF · NeMo"]
    Config["ArchitectureConfig<br/>Normalizes source configuration"]
    Registry["Registry<br/>Selects the model class and task"]
    Components["Reusable components<br/>Attention · MLP · Norm · RoPE · MoE · Vision · Audio"]
    Models["Model modules<br/>Compose components into architectures"]
    Tasks["Tasks<br/>Define ONNX inputs, outputs, caches, and model splits"]
    Graph["ONNX graph construction<br/>onnxscript.nn + onnx_ir"]
    Optimize["EP-aware optimization<br/>Cleanup · Fusion · Lowering · Folding"]
    Weights["Weight pipeline<br/>Download · Rename · Transform · Cast · Apply"]
    Package["ModelPackage<br/>One or more deployable ONNX models"]
    Runtime["ONNX Runtime / ONNX Runtime GenAI"]

    Sources --> Config
    Config --> Registry
    Registry --> Models
    Registry --> Tasks
    Components --> Models
    Models --> Tasks
    Tasks --> Graph
    Graph --> Optimize
    Optimize --> Weights
    Weights --> Package
    Package --> Runtime
Loading

The package is organised into four layers:

  • Componentsonnxscript.nn.Module building blocks (Attention, MLP, DecoderLayer, RoPE, VisionEncoder, MoELayer, …)
  • Models — Full architectures composed from components
  • Tasks — Define the ONNX graph I/O contract (inputs, outputs, KV cache)
  • Registry — Maps HuggingFace model_type strings to model classes

See the design document for details.

Repository organization

flowchart LR
    Root["src/mobius/"]
    Root --> API["Public API and build orchestration<br/>__init__.py · _builder.py · _model_package.py"]
    Root --> Configs["_configs/<br/>Normalized architecture configuration"]
    Root --> Components["components/<br/>Reusable ONNX building blocks"]
    Root --> Models["models/<br/>Architecture implementations"]
    Root --> Tasks["tasks/<br/>Graph I/O contracts"]
    Root --> Registry["_registry.py<br/>Model and task lookup"]
    Root --> Optimizations["_optimizations.py · rewrite_rules/ · _passes/<br/>Graph optimization"]
    Root --> Integrations["integrations/<br/>Transformers · Diffusers · GGUF · NeMo · ORT GenAI"]

    Configs --> Models
    Components --> Models
    Registry --> Models
    Registry --> Tasks
    Models --> Tasks
    Tasks --> API
    Integrations --> API
    API --> Optimizations
Loading

Supporting directories:

  • tests/ contains graph-construction, integration, parity, generation, and runtime tests.
  • src/mobius/**/*_test.py contains unit tests co-located with their implementation.
  • examples/ demonstrates text, multimodal, speech, and diffusion workflows.
  • docs/ contains user guides, design documentation, and API reference material.

Development

# Unit tests (fast, no network needed)
pytest tests/build_graph_test.py -v

# Integration tests (downloads models)
pytest tests/integration_test.py -m integration -v

# All unit tests (components, configs, tasks, models)
pytest src tests -m "not integration" -v

# Linting
lintrunner f --all-files

Adding a new model

To request a new model, or ask an AI coding agent to implement a new model, use the resources below:

See the AI-assisted model support strategy and the developer skills in .agents/skills/:

Skill Use when
adding-a-new-model Adding any new HuggingFace model architecture
reusable-components Creating or extending components
moe-models Adding a Mixture-of-Experts model
multimodal-models Adding a vision-language model
writing-tests Writing unit or integration tests
writing-rewrite-rules Adding ONNX graph rewrite rules

About

Build generative models in ONNX

Resources

Code of conduct

Contributing

Security policy

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages