Skip to content

Commit

Permalink
Fix datamodule config
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardoEmili authored Sep 13, 2023
1 parent 8471d9a commit 1eb9677
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def main(cfg: omegaconf.DictConfig) -> None:
Args:
cfg: the hydra configuration
"""
_: pl.LightningDataModule = hydra.utils.instantiate(cfg.data.datamodule, _recursive_=False)
_: pl.LightningDataModule = hydra.utils.instantiate(cfg.nn.data, _recursive_=False)


if __name__ == "__main__":
Expand Down

0 comments on commit 1eb9677

Please sign in to comment.