nemo_automodel.components.flow_matching.adapters.base
nemo_automodel.components.flow_matching.adapters.base
Base classes and data structures for model adapters.
This module defines the abstract ModelAdapter class and the FlowMatchingContext dataclass used to pass data between the pipeline and adapters.
Module Contents
Classes
API
Context object passed to model adapters containing all necessary data.
This provides a clean interface for adapters to access the data they need without coupling to the batch dictionary structure.
Backward compatibility alias for ‘latents’ field.
Abstract base class for model-specific forward pass logic.
Implement this class to add support for new model architectures without modifying the FlowMatchingPipeline.
The adapter pattern decouples the flow matching logic from model-specific details like input preparation and forward pass conventions.
Execute the model forward pass.
Parameters:
The model to call
Dictionary of inputs from prepare_inputs()
Returns: torch.Tensor
Model prediction tensor
Post-process model prediction if needed.
Override this for models that return extra outputs or need transformation.
Parameters:
Raw model output
Returns: torch.Tensor
Processed prediction tensor
Prepare model-specific inputs from the context.
Parameters:
FlowMatchingContext containing all necessary data
Returns: Dict[str, Any]
Dictionary of inputs to pass to the model’s forward method