nemo_automodel.components.utils.model_utils
nemo_automodel.components.utils.model_utils
Module Contents
Functions
Data
API
Helper function to freeze parameters by attribute name and name patterns.
Parameters:
The model to apply freezing to.
Name of the model attribute to freeze (e.g., ‘vision_tower’).
List of patterns to match in module names.
Best-effort retrieval of model.forward signature.
Return the logical number of elements for a parameter, accounting for quantized (packed) storage.
For bitsandbytes 4-bit params (Params4bit), the physical tensor packs multiple values per byte. We recover the logical count from the original shape stored in param.quant_state.
Get the number of trainable parameters and the L2 norm of the model.
Parameters:
Model to analyze
Returns: int
int
Check if the model supports logits_to_keep.
Parameters:
The model to check.
Returns: bool
True if the model supports logits_to_keep, False otherwise.
Check if the model’s forward() accepts seq_lens.
Returns True if:
- forward() has an explicit
seq_lensparameter, OR - forward() has **kwargs (so it won’t crash if seq_lens is passed)
Returns False otherwise (passing seq_lens would cause “unexpected kwarg” error).
Apply parameter freezing based on configuration.
Parameters:
The model to apply freezing to.
Configuration dict specifying what to freeze.
Cast fp32 parameters and buffers to bf16 for FSDP2 compatibility.
Count total and trainable parameters. Safe to call on meta-device models.
Parameters:
Model to analyze
Returns: int
int
Route RADIO ViT attention through F.scaled_dot_product_attention.
RADIO’s timm Attention blocks default to fused_attn=False, which
materializes the full (B, H, seq, seq) attention tensor (~5 GiB per
block at RADIO-v2-H + dynamic-resolution patch counts). Flipping
fused_attn=True matches the Megatron-Bridge path which sets
vision_config.use_flash_attn=True via
attn_implementation="flash_attention_2".
No-op when the model has no RADIO vision tower.
Parameters:
The model to patch in place.
Drop kwargs that model.forward does not accept.
If the model exposes **kwargs or its signature cannot be inspected, the
input kwargs are returned unchanged. The original dict is never mutated.
Freeze DeepSeek V4 indexer params that only feed discrete top-k masks.
Freeze MiniMax M3 lightning-indexer params that only feed discrete top-k masks.
Freeze dead K/V parameters in KV-shared layers.
Models like Gemma4 E2B/E4B use KV-sharing where the last N layers reuse
key/value states from earlier layers. The k_proj, v_proj,
k_norm, and v_norm modules still exist in those shared layers but
are never used during forward. Their parameters therefore receive no
gradients, yet the optimizer still tracks them. On checkpoint resume the
distributed checkpoint framework expects optimizer state for every
parameter the optimizer was created with, but zero-gradient params may
have been excluded from the saved state — causing a RuntimeError.
Calling this function before optimizer creation sets
requires_grad=False on the dead parameters so the optimizer never
tracks them, keeping save and load consistent.
Parameters:
The model (or pipeline-parallel model part).
Return the model’s LM head module, if one can be found.
Return the model’s LM-head weight, materializing DTensor weights when needed.
A context manager under which models are initialized with all parameters on the specified device.
Example:
Parameters:
Device to initialize all parameters on.
Print the number of trainable parameters in the model.
Parameters:
Model to analyze
Label for the summary header (e.g. "Draft" to distinguish the
draft model from the target in speculative-decoding training).
Returns: int
int
Whitelist NVIDIA models to allow remote code execution.
Parameters:
The name or path of the pretrained model.
Returns:
True if the model should be loaded with trust_remote_code, False otherwise.
Context manager to skip random weight initialization when loading pretrained models.
Squeeze batch dimension and prepare inputs for THD (total, hidden, depth) format.
This function removes the batch dimension from input tensors and processes attention kwargs for use with Transformer Engine’s THD format. It’s typically used when the batch has already been converted to THD format (with batch_size=1 as a placeholder dimension) and that dimension needs to be removed.
The function performs three key operations:
- Removes the batch dimension (dim 0) from input tensors
- Filters out padding values from cumulative sequence length tensors
- Converts max_seqlen from tensor to scalar if needed
Parameters:
Input token IDs with shape [1, total_tokens]
or [1, total_tokens, hidden_dim]. The first dimension will be squeezed.
None is permitted when the caller is feeding the model via
inputs_embeds instead — embeddings are squeezed inside the model
forward (the squeezed_for_thd branch in NemotronHModel.forward
and analogous code paths), so this helper has nothing to squeeze and
simply returns None for the input_ids slot.
Position IDs with shape [1, total_tokens]. The first dimension will be squeezed.
Padding mask with shape [1, total_tokens]. The first dimension will be squeezed.
Dictionary of attention-related tensors. May contain:
- cu_seqlens: Cumulative sequence lengths [1, num_seqs+1]
- cu_seqlens_padded: Cumulative padded sequence lengths [1, num_seqs+1]
- max_seqlen: Maximum sequence length (tensor or int)
- Other attention parameters (will be squeezed if tensors)
Sentinel value used to indicate padding in cu_seqlens and cu_seqlens_padded tensors. These values will be filtered out. Default: -1000.
Returns:
A tuple containing:
- input_ids (torch.Tensor): Input IDs with batch dimension removed [total_tokens] or [total_tokens, hidden_dim]
- position_ids (torch.Tensor): Position IDs with batch dimension removed [total_tokens]
- padding_mask (torch.Tensor): Padding mask with batch dimension removed [total_tokens]
- attn_kwargs (dict): Updated attention kwargs with:
- Batch dimensions removed from all tensor values
- Padding values filtered from cu_seqlens and cu_seqlens_padded
- max_seqlen converted to scalar if it was a tensor