Skip to content

Commit

Permalink
rename MegatronDataModule
Browse files Browse the repository at this point in the history
  • Loading branch information
sichu2023 committed Oct 25, 2024
1 parent a05c230 commit bb1c874
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
Mode = Literal["train", "validation", "test"]


class ESMDataModule(MegatronDatamodule):
class ESMDataModule(MegatronDataModule):
"""LightningDataModule wrapper of `ESMDataset`."""

def __init__(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
__all__: Sequence[str] = ("SingleCellDataModule",)


class SingleCellDataModule(MegatronDatamodule):
class SingleCellDataModule(MegatronDataModule):
"""LightningDataModule wrapper of `SingleCellDataset`
Args:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from nemo.utils import logging


class MegatronDatamodule(pl.LightningDataModule):
class MegatronDataModule(pl.LightningDataModule):
"""A mixin that adds a `state_dict` and `load_state_dict` method for datamodule training resumption in NeMo."""

def __post_init__(self):
Expand Down

0 comments on commit bb1c874

Please sign in to comment.