| name | adding-model-support |
| description | Guide for adding support for new LLM or VLM models in Megatron-Bridge. Covers bridge, provider, recipe, tests, docs, and examples. Use when the user asks to add, support, onboard, or integrate a new model, or when creating bridges, providers, or recipes for a new model family. |
Adding New Model Support in Megatron-Bridge
Phase 1: Discovery
Step 1 — Get the HF model link
Ask the user for the HuggingFace model link (e.g. https://huggingface.co/Qwen/Qwen3.5-VL-27B).
If the model is not public, ask the user to provide the config.json file directly.
Step 2 — Fetch and analyze config.json
Read the model's config.json from HuggingFace (or from the user-provided file). Key fields to extract:
model_type — used for @register_bridge(model_type=...)
architectures — the HF model class name (used for source=... in registration)
tie_word_embeddings — critical for weight tying
- Architecture fields:
num_hidden_layers, hidden_size, intermediate_size, num_attention_heads, num_key_value_heads, vocab_size, max_position_embeddings, rope_theta, etc.
- MoE fields (if present):
num_local_experts, num_experts_per_tok, moe_intermediate_size
- MLA fields (if present):
q_lora_rank, kv_lora_rank, qk_nope_head_dim, qk_rope_head_dim
If there are config fields you don't recognize from previously supported models (check CONFIG_MAPPING in model_bridge.py and existing bridges), this likely indicates a new architectural block (e.g., a novel attention variant, custom normalization, or a new layer type). Ask the user to provide the HuggingFace modeling_*.py implementation of that block so you can understand the computation and create the correct Megatron-side mapping or custom module.
Step 3 — Determine VLM vs LLM
VLM (Vision-Language Model) if config.json contains:
text_config AND vision_config sub-configs
- Note: VLMs may or may not have "VL" in the name
LLM (Text-only) if:
- No
text_config / vision_config
- Single flat config for the language model
This distinction affects:
- Which files to create (VLMs need a model.py combining vision + language)
- Where to read config fields from (
text_config vs top-level for VLMs)
- Test patterns (VLMs need vision inputs in functional tests)
Step 4 — Check for quantized weights (FP8 / FP4)
Inspect the HF checkpoint's model.safetensors (or model.safetensors.index.json) for quantized
weight dtypes such as float8_e4m3fn (FP8) or uint8/uint4 with accompanying *_scale_inv or
*_scale tensors. Common signs:
config.json mentions quantization_config or dtype fields like "torch_dtype": "float8_e4m3fn"
- Safetensors contain
weight_scale_inv keys alongside the main weight keys
- The model card mentions FP8/FP4/INT4 weights
Why this matters: The bridge's import_ckpt path does not automatically dequantize — it
loads raw quantized values as-is. This produces a silently broken model (random-level loss, huge
grad norms) instead of raising an error.
Fix: Dequantize before conversion. Two approaches:
-
Standalone script (recommended for user-facing models) — Write a
dequant_fp8_for_bridge.py in the model's examples folder.
Reference: examples/models/vlm/ministral3/dequant_fp8_for_bridge.py.
The pattern is: w_bf16 = fp8_weight.to(bfloat16) * weight_scale_inv.
-
In-bridge hook — Override maybe_modify_loaded_hf_weight() in the bridge class to
dequantize on the fly during import:
def maybe_modify_loaded_hf_weight(self, hf_param, hf_state_dict):
weight = hf_state_dict[hf_param]
scale_key = hf_param + "_scale_inv"
if weight.dtype == torch.float8_e4m3fn and scale_key in hf_state_dict:
return weight.to(torch.bfloat16) * hf_state_dict[scale_key].to(torch.bfloat16)
return weight
Always add a sanity check in the verification workflow (e.g., print std of a weight tensor —
quantized models typically have std ≈ 13 before dequantization vs std ≈ 0.006 after).
Phase 2: Bridge Support
File structure
LLM — Reference: Qwen2 (src/megatron/bridge/models/qwen/qwen2_bridge.py)
src/megatron/bridge/models/<model>/
├── __init__.py
├── <model>_bridge.py # Config + weight mappings
└── <model>_provider.py # (optional) Only if custom provide() or recipe presets needed
VLM — Reference: Qwen3.5-VL (src/megatron/bridge/models/qwen_vl/)
src/megatron/bridge/models/<model>/
├── __init__.py
├── <model>_bridge.py # Config + weight mappings
├── <model>_provider.py # Megatron config + model construction
└── modelling_<model>/ # If using Megatron vision encoder
├── __init__.py
└── model.py # Combines vision + language
OR with HF vision encoder (Reference: Gemma3-VL):
src/megatron/bridge/models/<model>/
├── __init__.py
├── <model>_bridge.py
├── <model>_provider.py
└── modeling_<model>.py # HF vision + Megatron language wrapper
Implementation order
LLM:
- Bridge — Register bridge, implement
provider_bridge() and mapping_registry().
The bridge calls super().provider_bridge() to get a GPTModelProvider from CONFIG_MAPPING,
then sets model-specific attributes on it. No separate provider file needed for most models.
- Provider (optional) — Only if the model needs extra dataclass fields for serialization,
custom
provide() logic, or predefined size variants for recipes.
VLM:
- Provider — VLMs always need a custom provider subclass with a custom
provide() that
instantiates the combined vision+language model.
- Bridge — Register bridge with
provider=MyVLModelProvider. The bridge manually calls
hf_config_to_provider_kwargs(text_config) and instantiates the custom provider.
- Model class — Combine vision encoder + language decoder.
For detailed patterns, see:
Critical: tie_word_embeddings for VLMs
For VLMs, tie_word_embeddings lives on the top-level HF config, NOT on text_config. Always read from the parent config:
provider.share_embeddings_and_output_weights = getattr(hf_config, "tie_word_embeddings", False)
Critical: Config field location for VLMs
When reading HF config for VLMs, check whether each field is in:
hf_config (top-level) — e.g. tie_word_embeddings, image_token_id, video_token_id
hf_config.text_config — e.g. num_hidden_layers, hidden_size, etc.
hf_config.vision_config — e.g. vision encoder dimensions
Update FLOPs calculator for new architectural blocks
If the model introduces a new computational block that differs from standard attention or MLP
(e.g., Gated DeltaNet / GDN linear attention, Multi-Token Prediction / MTP heads, Mamba SSM layers),
update the FLOPs calculator in src/megatron/bridge/training/utils/flop_utils.py so that
training throughput metrics (TFLOPs/GPU) are accurate.
When to update: Any time the new block has different FLOPs-per-token than standard self-attention
or standard MLP. Common cases:
- Linear attention variants (GDN, RetNet, RWKV) — replace the
O(s²) attention term with the
block's actual operation count
- MTP / speculative decoding heads — add FLOPs for the extra projection and norm layers
- SSM layers (Mamba) — different recurrence FLOPs than attention
- Novel MoE routing — may change the effective expert count
How to update:
- Read the existing
transformer_flops() function in flop_utils.py to understand the structure.
- Add a conditional block gated on a config attribute (e.g.,
experimental_attention_variant,
mtp_num_layers). Follow the existing MoE pattern for config validation — raise on invalid
types, assert list lengths, and use direct attribute access instead of getattr with fallback
defaults so that misconfigurations fail explicitly.
- Compute the per-layer FLOPs for the new block and blend it with the standard attention term
based on the layer pattern.
- Add unit tests in
tests/unit_tests/training/utils/test_flop_utils.py that verify:
- New-block FLOPs differ from pure-attention baseline
- Exact formula matches hand-computed expected values
- Varying the block ratio (e.g.,
linear_attention_freq) changes FLOPs
Reference PR: #2925 — GDN FLOPs calculator
adds GDN support with both the calculator code and comprehensive tests.
Phase 3: Recipe Support
Recipes provide pre-configured training settings for each model size.
LLM recipes: src/megatron/bridge/recipes/<family>/<model>.py
VLM recipes: src/megatron/bridge/recipes/<family>/<model>.py
Each recipe file defines functions for each model size + training mode:
<model>_<size>_sft_config() — Full supervised fine-tuning
<model>_<size>_peft_config() — LoRA/DoRA parameter-efficient fine-tuning
<model>_<size>_pretrain_config() — Pretraining (LLM only, usually)
For detailed recipe patterns, see recipe-patterns.md.
Export checklist
- Family
__init__.py — import and add to __all__
- Top-level
src/megatron/bridge/recipes/__init__.py — wildcard import
train_any_basic.py — add to config_map, docstring, and --model choices
Phase 4: Tests
Unit tests (no GPU)
tests/unit_tests/models/<model>/
├── __init__.py
├── test_<model>_bridge.py # Mock HF config → verify provider mapping
└── test_<model>_provider.py # (optional) Only if custom provider subclass exists
Functional tests (GPU)
tests/functional_tests/models/<model>/
├── __init__.py
├── test_<model>_conversion.py # Toy model HF↔Megatron roundtrip
└── test_<model>_provider.py # compare_provider_configs (optional)
For detailed test patterns, see tests-and-examples.md.
Phase 5: Docs and Examples
Examples
LLM examples: examples/models/<model>/
VLM examples: examples/models/vlm/<model>/
examples/models/<model>/ # LLM
examples/models/vlm/<model>/ # VLM
├── README.md
├── conversion.sh # HF↔Megatron conversion commands (real model)
├── inference.sh # Generation commands (real model, reasonable output)
├── slurm_sft.sh # SFT training on SLURM
└── slurm_peft.sh # PEFT training on SLURM
Key deliverable requirement: conversion.sh and inference.sh must target a real published model (e.g. Qwen/Qwen3-8B, not a toy). The inference script must produce reasonable output — for LLMs a coherent text continuation, for VLMs a plausible image description. This is the acceptance bar: conversion runs cleanly and generation makes sense.
Documentation
Add a model page at docs/models/<type>/<model>.md covering:
- Supported variants and sizes
- Conversion commands
- Training examples (SFT, PEFT)
- Known limitations
Verification Workflow
After implementing bridge support, prompt the user to run these commands on the cluster:
1. Smoke test (single GPU)
uv run python -c "
from megatron.bridge import AutoBridge
bridge = AutoBridge.from_hf_pretrained('<org>/<model>')
provider = bridge.to_megatron_provider()
provider.tensor_model_parallel_size = 1
provider.pipeline_model_parallel_size = 1
provider.finalize()
model = provider.provide_distributed_model(wrap_with_ddp=False)
bridge.load_hf_weights(model)
for i, (name, tensor) in enumerate(bridge.export_hf_weights(model, cpu=True)):
print(name, tuple(tensor.shape))
if i > 10: break
"
2. Conversion roundtrip (multi-GPU)
uv run python examples/conversion/convert_checkpoints.py import \
--hf-model <org>/<model> \
--megatron-path /workspace/<model> \
--torch-dtype bfloat16
uv run python examples/conversion/convert_checkpoints.py export \
--hf-model <org>/<model> \
--megatron-path /workspace/<model>/iter_0000000 \
--hf-path /workspace/<model>-hf-export
3. Generation test
For LLMs:
uv run python examples/conversion/hf_to_megatron_generate_text.py \
--hf_model_path <org>/<model> --prompt "Hello"
For VLMs:
uv run python examples/conversion/hf_to_megatron_generate_vlm.py \
--hf_model_path <org>/<model> \
--image_path "https://example.com/image.jpeg" \
--prompt "Describe this image."
4. Run tests
uv run python -m pytest tests/unit_tests/models/<model>/ -v
uv run python -m pytest tests/functional_tests/models/<model>/ -v --run-gpu
Quick Decision Tree
User wants to add a model
│
├─ Has HF link? ─── No ──→ Ask for link (or config.json if private)
│
├─ Has text_config + vision_config? ─── Yes ──→ VLM path
│ ├─ Has Megatron vision encoder? ──→ Megatron encoder (Qwen3.5 pattern)
│ └─ No Megatron encoder ──→ HF encoder (Gemma3 pattern)
│
└─ No vision config ──→ LLM path (Qwen2 / GPT-OSS pattern)
├─ Standard GPT-style? ──→ Bridge only (no provider subclass needed)
└─ Custom components? ──→ Bridge + custom provider or modeling module