Config json architecture dispatch
Skill kjuhwa/skills-hub/skills/model-loading/config-json-architecture-dispatch
Auto-detect model version from config.json architecture field and dispatch to the correct model classFrom its SKILL.md
npx -y skills add kjuhwa/skills-hub --skill config-json-architecture-dispatchAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
3.4 KB, 725 tokens by cl100k_base, as published. Nobody here has run it
Auto-detect model version from config.json and dispatch to the correct model class
When to use
Use this pattern when a model directory may contain different architecture generations and the loading code must stay backward-compatible. Instead of requiring callers to pass an explicit version flag, read the architecture string from the model's own config.json and dispatch automatically.
Useful in both inference entry points (CLI / web app) and training scripts that need to instantiate the right class before applying LoRA configs.
Pattern
1. Read architecture from config.json
import json
from pathlib import Path
def _detect_architecture(model_path: str) -> str:
config_path = Path(model_path) / "config.json"
with open(config_path) as f:
config = json.load(f)
return config.get("architecture", "voxcpm").lower()
2. Map architecture string to model class
from voxcpm.model.voxcpm import VoxCPMModel
from voxcpm.model.voxcpm2 import VoxCPM2Model
_ARCH_TO_CLASS = {
"voxcpm": VoxCPMModel,
"voxcpm2": VoxCPM2Model,
}
def _get_model_class(arch: str):
cls = _ARCH_TO_CLASS.get(arch)
if cls is None:
raise ValueError(f"Unknown architecture: {arch!r}. Expected one of {list(_ARCH_TO_CLASS)}")
return cls
3. Dispatch at load time
import logging
logger = logging.getLogger(__name__)
def load_model(model_path: str, lora_config=None):
arch = _detect_architecture(model_path)
model_cls = _get_model_class(arch)
logger.info("Detected architecture: %s → using %s", arch, model_cls.__name__)
return model_cls.from_local(model_path, lora_config=lora_config)
4. Apply LoRA config version-agnostically
The LoRA config is passed identically regardless of version; each model class handles its own interpretation:
# Training script pattern (scripts/train_voxcpm_finetune.py lines 93-101)
arch = _detect_architecture(args.model_path)
LoRAConfig = LoRAConfigV2 if arch == "voxcpm2" else LoRAConfigV1
lora_cfg = LoRAConfig(**lora_kwargs) if args.use_lora else None
model = load_model(args.model_path, lora_config=lora_cfg)
Source reference
- Upstream:
OpenBMB/VoxCPM@main/13605c5a - Key files:
src/voxcpm/core.py:57-81— central dispatch and config readingsrc/voxcpm/cli.py:93-118— CLI entry point using dispatchscripts/train_voxcpm_finetune.py:93-101— training-time version-aware LoRA selection
Notes
- Always
.lower()the architecture string before comparing — config files written by different tools may differ in case. - Default to the older architecture (
"voxcpm") when the key is absent; this preserves backward compatibility with checkpoints that pre-date the versioning field. - Log the detected architecture at INFO level so users can verify which model class was selected without reading source.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.