Skip to content

Commit

Permalink
Minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
georgeyiasemis committed Jan 11, 2024
1 parent 13bcd33 commit 6af337f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions direct/nn/adaptive/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,15 @@ class ParameterizedMultislice2dPolicyConfig(ParameterizedPolicyConfig):
class StraightThroughPolicyConfig(PolicyConfig):
kspace_shape: tuple[int, int] = MISSING
num_layers: int = 2
num_fc_layers: int = 3
fc_size: int = 256
kspace_sampler: bool = False
sampler_detach_mask: bool = False
drop_prob: float = 0.0
activation: ActivationType = ActivationType.LEAKYRELU
sampler_chans: int = 16
sampler_num_pool_layers: int = 4
sampler_fc_size: int = 256
sampler_drop_prob: float = 0
sampler_num_fc_layers: int = 3
sampler_activation: ActivationType = ActivationType.LEAKYRELU
sampler_cwn_conv: bool = False
sampling_type: PolicySamplingType = PolicySamplingType.STATIC
num_time_steps: Optional[int] = None
num_slices: Optional[int] = None

0 comments on commit 6af337f

Please sign in to comment.