Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeyiasemis committed Oct 20, 2024
1 parent 842dd87 commit 8d7cd07
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions direct/nn/transformers/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ class ImageDomainMRIViT3DConfig(MRIViTConfig):
class KSpaceDomainMRIViT2DConfig(MRIViTConfig):
average_size: tuple[int, int] = (320, 320)
patch_size: tuple[int, int] = (16, 16)
compute_per_coil: bool = True


@dataclass
class KSpaceDomainMRIViT3DConfig(MRIViTConfig):
average_size: tuple[int, int] = (320, 320, 320)
patch_size: tuple[int, int] = (16, 16, 16)
compute_per_coil: bool = True

0 comments on commit 8d7cd07

Please sign in to comment.