Skip to content

Commit

Permalink
Fix bug in datamodule (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
HangJung97 authored Nov 21, 2023
1 parent 204d50a commit e357b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ascent/datamodules/nnunet_datamodule.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def setup_transforms(self) -> None:
other_transforms.append(aug)

if self.hparams.augmentation.get("intensity"):
for aug in self.hparams.augmentation.get("intensity"):
for name, aug in self.hparams.augmentation.get("intensity").items():
other_transforms.append(aug)

if self.hparams.augmentation.get("flip"):
Expand Down

0 comments on commit e357b56

Please sign in to comment.