nemo_automodel.components.models.inkling.model
nemo_automodel.components.models.inkling.model
NeMo AutoModel wrapper for the Inkling multimodal MoE model.
The wrapper reuses the HuggingFace InklingForConditionalGeneration towers,
attention, norms, embeddings, and language-model head. Decoder feed-forwards
retain the raw checkpoint’s fused interleaved projection layout; sparse layers
also use an expert-parallel :class:InklingMoE. This avoids full-size weight
conversion copies while preserving Transformers numerics.
Module Contents
Classes
API
Bases: HFCheckpointingMixin, HFInklingForConditionalGeneration, MoEFSDPSyncMixin
Inkling VLM with expert-parallel MoE feed-forwards.
Keep Inkling’s post-embedding norm on the first pipeline stage.
Run the standard Inkling forward or its pipeline-stage equivalent.
Return PP metadata using Inkling’s unpadded runtime vocabulary.
Inkling uses a trained correction bias, so gate-bias updates are a no-op.
Bases: HFInklingTextModel
Inkling text backbone that also accepts AutoModel pipeline stages.