Megatron Bridge provides unified training entry points for pretraining, Supervised Fine-Tuning (SFT), and Parameter-Efficient Fine-Tuning (PEFT). All training modes share the same underlying training loop architecture, differing primarily in their data handling and model configuration.
The {py:func}bridge.training.pretrain.pretrain and {py:func}bridge.training.finetune.finetune functions are the primary entry points for pretraining models—either from scratch or through fine-tuning. Each function accepts a {py:class}bridge.training.config.ConfigContainer along with a forward_step_func that defines how the training loop should be run.
The forward_step_func defines how each training step is executed. It should follow this signature:
def forward_step_func(
global_state: GlobalState,
data_iterator: Iterable,
model: MegatronModule,
return_schedule_plan: bool = False,
) -> tuple[Any, Callable]:
"""Forward step function.
Args:
global_state: Training state object containing configuration and utilities
data_iterator: Iterator over training/evaluation data
model: The model to perform forward step on
return_schedule_plan: Whether to return schedule plan (for MoE overlap)
Returns:
tuple containing:
- output: Forward pass output (tensor or collection of tensors)
- loss_func: Function to compute loss from the output
"""The forward step function has three main responsibilities:
- Get a Batch: Retrieve and process the next batch from the data iterator.
- Run Forward Pass: Execute the model's forward pass on the batch.
- Return Loss Function: Provide a function to compute loss from the output.
Megatron Bridge automatically provides the {py:class}bridge.training.state.GlobalState object containing:
- Configuration: Complete training configuration (
global_state.cfg). - Timers: Performance monitoring utilities (
global_state.timers). - Training Progress: Current step, consumed samples (
global_state.train_state). - Loggers: TensorBoard and WandB loggers for metrics tracking.
All configuration and state information are accessible through the injected state object.
For complete implementation examples, see {py:func}bridge.training.gpt_step.forward_step.
The loss function returned by the forward step can follow different patterns based on your needs:
-
Standard Pattern: Return
(loss, metadata_dict)- The loss is automatically averaged across microbatches
- Metadata dict contains named loss components for logging
- Most common pattern for standard training
-
Token-aware Pattern: Return
(loss, num_tokens, metadata_dict)- Loss is averaged across both microbatches and tokens
- Useful when you want per-token loss averaging
- Recommended for variable-length sequences
-
Inference Pattern: Return arbitrary data structures
- Used with
collect_non_loss_data=Trueandforward_only=True - Suitable for inference, evaluation metrics, or custom data collection
- No automatic loss processing applied
- Used with
The training loop automatically handles:
- Microbatch Reduction: Aggregates losses across all microbatches in the global batch.
- Distributed Reduction: Performs all-reduce operations across data parallel ranks.
- Pipeline Coordination: Only the last pipeline stage computes and reduces losses.
- Logging Integration: Automatically logs loss components to TensorBoard/WandB.
For implementation details, see {py:func}bridge.training.train.train_step and {py:func}bridge.training.losses.masked_token_loss, as an example.
You can customize the forward step function when you need:
- Custom Loss Functions: Beyond standard language modeling loss (e.g., adding regularization, multi-objective training).
- Multi-task Learning: Training models on multiple tasks simultaneously with different loss components.
- Custom Data Processing: Specialized batch preprocessing for domain-specific data formats.
- Additional Metrics: Computing extra evaluation metrics during training.
- Model-specific Logic: Special handling for custom model architectures or training procedures.