Skip to content

Commit

Permalink
Address the merge conflict properly
Browse files Browse the repository at this point in the history
Signed-off-by: John St John <jstjohn@nvidia.com>
  • Loading branch information
jstjohn committed Aug 15, 2024
1 parent 739c210 commit eddcbb4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions nemo/lightning/pytorch/plugins/data_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,7 @@ def on_megatron_step_end(self, trainer: pl.Trainer, pl_module: pl.LightningModul

self.prev_global_batch_size = self.current_global_batch_size

# TODO: Add consumed samples
consumed_samples = self.compute_consumed_samples(trainer.global_step + 1 - self.init_consumed_samples)
consumed_samples = self.compute_consumed_samples(trainer.global_step + 1 - self.init_global_step)
if self.output_log:
# You may need to turn off logging, for example when doing trainer.predict(model, data)
pl_module.log(
Expand Down

0 comments on commit eddcbb4

Please sign in to comment.