diff --git a/nemo/collections/multimodal/models/multimodal_llm/neva/neva_model.py b/nemo/collections/multimodal/models/multimodal_llm/neva/neva_model.py index 57b2c39360b7..8b6492ed574f 100644 --- a/nemo/collections/multimodal/models/multimodal_llm/neva/neva_model.py +++ b/nemo/collections/multimodal/models/multimodal_llm/neva/neva_model.py @@ -737,7 +737,7 @@ def fwd_output_and_loss_func(dataloader_iter, model, checkpoint_activations_all_ def get_forward_output_only_func(self): def fwd_output_only_func(dataloader_iter, model): - batch, _, _ = next(dataloader_iter) + batch = next(dataloader_iter) extra_arg = {} ( tokens, diff --git a/nemo/collections/multimodal/parts/utils.py b/nemo/collections/multimodal/parts/utils.py index 50afe822cb12..4520e8ae4ab1 100644 --- a/nemo/collections/multimodal/parts/utils.py +++ b/nemo/collections/multimodal/parts/utils.py @@ -320,7 +320,7 @@ def dummy(): def create_neva_model_and_processor(cfg): - from nemo.collections.multimodal.models.neva.neva_model import MegatronNevaModel + from nemo.collections.multimodal.models.multimodal_llm.neva.neva_model import MegatronNevaModel plugins = [] if cfg.get('cluster_type', None) == 'BCP':