georgeyiasemis commited on
Commit
fe69829
·
verified ·
1 Parent(s): 0b52205

Replace configs with minimal inference-only YAMLs (no training/validation)

Browse files
knee/vsharp_adain_triang_32_16.yaml CHANGED
@@ -1,197 +1,67 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: NONE
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 32
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: ADAIN
39
- image_unet_adain_hidden_features:
40
- - 32
41
- - 16
42
- image_didn_hidden_channels: 16
43
- image_didn_num_dubs: 6
44
- image_didn_num_convs_recon: 9
45
- image_conv_hidden_channels: 64
46
- image_conv_n_convs: 15
47
- image_conv_activation: ActivationType.RELU
48
- image_conv_batchnorm: false
49
- additional_models:
50
- sensitivity_model:
51
- model_name: unet.unet_2d.UnetModel2d
52
- in_channels: 2
53
- out_channels: 2
54
- num_filters: 16
55
- num_pool_layers: 4
56
- dropout_probability: 0.0
57
- modulation: NONE
58
- aux_in_features: null
59
- fc_hidden_features: null
60
  fc_groups: 1
61
- fc_activation: SIGMOID
62
- num_weights: null
63
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  physics:
65
- forward_operator: fft2
66
- backward_operator: ifft2
67
- use_noise_matrix: false
68
- noise_matrix_scaling: 1.0
69
- training:
70
- datasets:
71
- - name: FastMRI
72
- transforms:
73
- crop: reconstruction_size
74
- estimate_sensitivity_maps: true
75
- scaling_key: masked_kspace
76
- image_center_crop: false
77
- masking:
78
- name: FastMRIEquispaced
79
- accelerations:
80
- - 4
81
- - 16
82
- center_fractions:
83
- - 0.08
84
- - 0.02
85
- range_mode: LINEAR
86
- scale_percentile: 0.995
87
- use_seed: false
88
- delete_kspace: false
89
- random_flip_probability: 0.5
90
- random_rotation_probability: 0.5
91
- model_checkpoint: null
92
- optimizer: Adam
93
- lr: 0.002
94
- weight_decay: 0.0
95
- batch_size: 1
96
- lr_step_size: 15000
97
- lr_gamma: 0.8
98
- lr_warmup_iter: 1000
99
- swa_start_iter: null
100
- num_iterations: 150001
101
- validation_steps: 4000
102
- gradient_steps: 1
103
- gradient_clipping: 0.0
104
- gradient_debug: false
105
- loss:
106
- crop: header
107
- losses:
108
- - function: l1_loss
109
- multiplier: 1.0
110
- - function: ssim_loss
111
- multiplier: 1.0
112
- - function: hfen_l2_norm_loss
113
- multiplier: 1.0
114
- - function: hfen_l1_norm_loss
115
- multiplier: 1.0
116
- - function: kspace_nmae_loss
117
- multiplier: 1.0
118
- - function: kspace_nmse_loss
119
- multiplier: 1.0
120
- checkpointer:
121
- checkpoint_steps: 4000
122
- metrics: []
123
- regularizers: []
124
- validation:
125
- datasets:
126
- - name: FastMRI
127
- transforms:
128
- estimate_sensitivity_maps: true
129
- scaling_key: masked_kspace
130
- masking:
131
- name: FastMRIEquispaced
132
- accelerations:
133
- - 4
134
- center_fractions:
135
- - 0.08
136
- scale_percentile: 0.995
137
- use_seed: true
138
- text_description: 4x
139
- - name: FastMRI
140
- transforms:
141
- estimate_sensitivity_maps: true
142
- scaling_key: masked_kspace
143
- masking:
144
- name: FastMRIEquispaced
145
- accelerations:
146
- - 8
147
- center_fractions:
148
- - 0.04
149
- scale_percentile: 0.995
150
- use_seed: true
151
- text_description: 8x
152
- - name: FastMRI
153
- transforms:
154
- estimate_sensitivity_maps: true
155
- scaling_key: masked_kspace
156
- masking:
157
- name: FastMRIEquispaced
158
- accelerations:
159
- - 16
160
- center_fractions:
161
- - 0.02
162
- scale_percentile: 0.995
163
- use_seed: true
164
- text_description: 16x
165
- batch_size: 20
166
- metrics:
167
- - fastmri_psnr
168
- - fastmri_ssim
169
- - fastmri_nmse
170
- regularizers: []
171
- crop: header
172
  inference:
173
- dataset:
174
- name: FastMRI
175
- transforms:
176
- masking:
177
- name: FastMRIEquispaced
178
- accelerations:
179
- - 4.0
180
- center_fractions:
181
- - 0.08
182
- mode: STATIC
183
- cropping:
184
- crop: null
185
- sensitivity_map_estimation:
186
- estimate_sensitivity_maps: true
187
- normalization:
188
- scaling_key: masked_kspace
189
- scale_percentile: 0.995
190
- use_seed: true
191
- text_description: inference-4x
192
- batch_size: 1
193
- crop: header
194
- logging:
195
- log_as_image: null
196
- tensorboard:
197
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ aux_in_features: 2
22
+ log_aux: true
23
+ fc_hidden_features:
24
+ - 32
25
+ - 32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  fc_groups: 1
27
+ fc_activation: SOFTPLUS
28
+ image_unet_num_filters: 32
29
+ image_unet_num_pool_layers: 4
30
+ image_unet_dropout: 0.0
31
+ image_unet_norm_type: ADAIN
32
+ image_unet_adain_hidden_features:
33
+ - 32
34
+ - 16
35
+ additional_models:
36
+ sensitivity_model:
37
+ model_name: unet.unet_2d.UnetModel2d
38
+ in_channels: 2
39
+ out_channels: 2
40
+ num_filters: 16
41
+ num_pool_layers: 4
42
+ dropout_probability: 0.0
43
+ conv_out_bias: false
44
  physics:
45
+ forward_operator: fft2
46
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  inference:
48
+ batch_size: 1
49
+ crop: header
50
+ dataset:
51
+ name: FastMRI
52
+ transforms:
53
+ use_seed: true
54
+ delete_kspace: false
55
+ masking:
56
+ name: FastMRIEquispaced
57
+ accelerations:
58
+ - 4.0
59
+ center_fractions:
60
+ - 0.08
61
+ cropping:
62
+ image_center_crop: false
63
+ sensitivity_map_estimation:
64
+ estimate_sensitivity_maps: true
65
+ normalization:
66
+ scaling_key: masked_kspace
67
+ scale_percentile: 0.995
 
 
 
 
 
knee/vsharp_modconv_features_triang.yaml CHANGED
@@ -1,195 +1,66 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: FEATURES
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 32
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- random_flip_probability: 0.5
88
- random_rotation_probability: 0.5
89
- model_checkpoint: null
90
- optimizer: Adam
91
- lr: 0.002
92
- weight_decay: 0.0
93
- batch_size: 1
94
- lr_step_size: 15000
95
- lr_gamma: 0.8
96
- lr_warmup_iter: 1000
97
- swa_start_iter: null
98
- num_iterations: 80001
99
- validation_steps: 4000
100
- gradient_steps: 1
101
- gradient_clipping: 0.0
102
- gradient_debug: false
103
- loss:
104
- crop: header
105
- losses:
106
- - function: l1_loss
107
- multiplier: 1.0
108
- - function: ssim_loss
109
- multiplier: 1.0
110
- - function: hfen_l2_norm_loss
111
- multiplier: 1.0
112
- - function: hfen_l1_norm_loss
113
- multiplier: 1.0
114
- - function: kspace_nmae_loss
115
- multiplier: 1.0
116
- - function: kspace_nmse_loss
117
- multiplier: 1.0
118
- checkpointer:
119
- checkpoint_steps: 4000
120
- metrics: []
121
- regularizers: []
122
- validation:
123
- datasets:
124
- - name: FastMRI
125
- transforms:
126
- estimate_sensitivity_maps: true
127
- scaling_key: masked_kspace
128
- masking:
129
- name: FastMRIEquispaced
130
- accelerations:
131
- - 4
132
- center_fractions:
133
- - 0.08
134
- scale_percentile: 0.995
135
- use_seed: true
136
- text_description: 4x
137
- - name: FastMRI
138
- transforms:
139
- estimate_sensitivity_maps: true
140
- scaling_key: masked_kspace
141
- masking:
142
- name: FastMRIEquispaced
143
- accelerations:
144
- - 8
145
- center_fractions:
146
- - 0.04
147
- scale_percentile: 0.995
148
- use_seed: true
149
- text_description: 8x
150
- - name: FastMRI
151
- transforms:
152
- estimate_sensitivity_maps: true
153
- scaling_key: masked_kspace
154
- masking:
155
- name: FastMRIEquispaced
156
- accelerations:
157
- - 16
158
- center_fractions:
159
- - 0.02
160
- scale_percentile: 0.995
161
- use_seed: true
162
- text_description: 16x
163
- batch_size: 20
164
- metrics:
165
- - fastmri_psnr
166
- - fastmri_ssim
167
- - fastmri_nmse
168
- regularizers: []
169
- crop: header
170
  inference:
171
- dataset:
172
- name: FastMRI
173
- transforms:
174
- masking:
175
- name: FastMRIEquispaced
176
- accelerations:
177
- - 4.0
178
- center_fractions:
179
- - 0.08
180
- mode: STATIC
181
- cropping:
182
- crop: null
183
- sensitivity_map_estimation:
184
- estimate_sensitivity_maps: true
185
- normalization:
186
- scaling_key: masked_kspace
187
- scale_percentile: 0.995
188
- use_seed: true
189
- text_description: inference-4x
190
- batch_size: 1
191
- crop: header
192
- logging:
193
- log_as_image: null
194
- tensorboard:
195
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ conv_modulation: FEATURES
22
+ aux_in_features: 2
23
+ log_aux: true
24
+ fc_hidden_features:
25
+ - 32
26
+ - 32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  fc_groups: 1
28
+ fc_activation: SOFTPLUS
29
+ modulation_at_input: false
30
+ image_unet_num_filters: 32
31
+ image_unet_num_pool_layers: 4
32
+ image_unet_dropout: 0.0
33
+ image_unet_norm_type: INSTANCE
34
+ additional_models:
35
+ sensitivity_model:
36
+ model_name: unet.unet_2d.UnetModel2d
37
+ in_channels: 2
38
+ out_channels: 2
39
+ num_filters: 16
40
+ num_pool_layers: 4
41
+ dropout_probability: 0.0
42
+ conv_out_bias: false
43
  physics:
44
+ forward_operator: fft2
45
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  inference:
47
+ batch_size: 1
48
+ crop: header
49
+ dataset:
50
+ name: FastMRI
51
+ transforms:
52
+ use_seed: true
53
+ delete_kspace: false
54
+ masking:
55
+ name: FastMRIEquispaced
56
+ accelerations:
57
+ - 4.0
58
+ center_fractions:
59
+ - 0.08
60
+ cropping:
61
+ image_center_crop: false
62
+ sensitivity_map_estimation:
63
+ estimate_sensitivity_maps: true
64
+ normalization:
65
+ scaling_key: masked_kspace
66
+ scale_percentile: 0.995
 
 
 
 
 
knee/vsharp_modconv_features_triang_32_16.yaml CHANGED
@@ -1,195 +1,66 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: FEATURES
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 16
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- random_flip_probability: 0.5
88
- random_rotation_probability: 0.5
89
- model_checkpoint: null
90
- optimizer: Adam
91
- lr: 0.002
92
- weight_decay: 0.0
93
- batch_size: 1
94
- lr_step_size: 15000
95
- lr_gamma: 0.8
96
- lr_warmup_iter: 1000
97
- swa_start_iter: null
98
- num_iterations: 80001
99
- validation_steps: 4000
100
- gradient_steps: 1
101
- gradient_clipping: 0.0
102
- gradient_debug: false
103
- loss:
104
- crop: header
105
- losses:
106
- - function: l1_loss
107
- multiplier: 1.0
108
- - function: ssim_loss
109
- multiplier: 1.0
110
- - function: hfen_l2_norm_loss
111
- multiplier: 1.0
112
- - function: hfen_l1_norm_loss
113
- multiplier: 1.0
114
- - function: kspace_nmae_loss
115
- multiplier: 1.0
116
- - function: kspace_nmse_loss
117
- multiplier: 1.0
118
- checkpointer:
119
- checkpoint_steps: 4000
120
- metrics: []
121
- regularizers: []
122
- validation:
123
- datasets:
124
- - name: FastMRI
125
- transforms:
126
- estimate_sensitivity_maps: true
127
- scaling_key: masked_kspace
128
- masking:
129
- name: FastMRIEquispaced
130
- accelerations:
131
- - 4
132
- center_fractions:
133
- - 0.08
134
- scale_percentile: 0.995
135
- use_seed: true
136
- text_description: 4x
137
- - name: FastMRI
138
- transforms:
139
- estimate_sensitivity_maps: true
140
- scaling_key: masked_kspace
141
- masking:
142
- name: FastMRIEquispaced
143
- accelerations:
144
- - 8
145
- center_fractions:
146
- - 0.04
147
- scale_percentile: 0.995
148
- use_seed: true
149
- text_description: 8x
150
- - name: FastMRI
151
- transforms:
152
- estimate_sensitivity_maps: true
153
- scaling_key: masked_kspace
154
- masking:
155
- name: FastMRIEquispaced
156
- accelerations:
157
- - 16
158
- center_fractions:
159
- - 0.02
160
- scale_percentile: 0.995
161
- use_seed: true
162
- text_description: 16x
163
- batch_size: 20
164
- metrics:
165
- - fastmri_psnr
166
- - fastmri_ssim
167
- - fastmri_nmse
168
- regularizers: []
169
- crop: header
170
  inference:
171
- dataset:
172
- name: FastMRI
173
- transforms:
174
- masking:
175
- name: FastMRIEquispaced
176
- accelerations:
177
- - 4.0
178
- center_fractions:
179
- - 0.08
180
- mode: STATIC
181
- cropping:
182
- crop: null
183
- sensitivity_map_estimation:
184
- estimate_sensitivity_maps: true
185
- normalization:
186
- scaling_key: masked_kspace
187
- scale_percentile: 0.995
188
- use_seed: true
189
- text_description: inference-4x
190
- batch_size: 1
191
- crop: header
192
- logging:
193
- log_as_image: null
194
- tensorboard:
195
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ conv_modulation: FEATURES
22
+ aux_in_features: 2
23
+ log_aux: true
24
+ fc_hidden_features:
25
+ - 32
26
+ - 16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  fc_groups: 1
28
+ fc_activation: SOFTPLUS
29
+ modulation_at_input: false
30
+ image_unet_num_filters: 32
31
+ image_unet_num_pool_layers: 4
32
+ image_unet_dropout: 0.0
33
+ image_unet_norm_type: INSTANCE
34
+ additional_models:
35
+ sensitivity_model:
36
+ model_name: unet.unet_2d.UnetModel2d
37
+ in_channels: 2
38
+ out_channels: 2
39
+ num_filters: 16
40
+ num_pool_layers: 4
41
+ dropout_probability: 0.0
42
+ conv_out_bias: false
43
  physics:
44
+ forward_operator: fft2
45
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  inference:
47
+ batch_size: 1
48
+ crop: header
49
+ dataset:
50
+ name: FastMRI
51
+ transforms:
52
+ use_seed: true
53
+ delete_kspace: false
54
+ masking:
55
+ name: FastMRIEquispaced
56
+ accelerations:
57
+ - 4.0
58
+ center_fractions:
59
+ - 0.08
60
+ cropping:
61
+ image_center_crop: false
62
+ sensitivity_map_estimation:
63
+ estimate_sensitivity_maps: true
64
+ normalization:
65
+ scaling_key: masked_kspace
66
+ scale_percentile: 0.995
 
 
 
 
 
knee/vsharp_modconv_features_triang_32_16_mod_inp.yaml CHANGED
@@ -1,195 +1,66 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: FEATURES
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 16
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: true
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- random_flip_probability: 0.5
88
- random_rotation_probability: 0.5
89
- model_checkpoint: null
90
- optimizer: Adam
91
- lr: 0.002
92
- weight_decay: 0.0
93
- batch_size: 1
94
- lr_step_size: 15000
95
- lr_gamma: 0.8
96
- lr_warmup_iter: 1000
97
- swa_start_iter: null
98
- num_iterations: 150001
99
- validation_steps: 4000
100
- gradient_steps: 1
101
- gradient_clipping: 0.0
102
- gradient_debug: false
103
- loss:
104
- crop: header
105
- losses:
106
- - function: l1_loss
107
- multiplier: 1.0
108
- - function: ssim_loss
109
- multiplier: 1.0
110
- - function: hfen_l2_norm_loss
111
- multiplier: 1.0
112
- - function: hfen_l1_norm_loss
113
- multiplier: 1.0
114
- - function: kspace_nmae_loss
115
- multiplier: 1.0
116
- - function: kspace_nmse_loss
117
- multiplier: 1.0
118
- checkpointer:
119
- checkpoint_steps: 4000
120
- metrics: []
121
- regularizers: []
122
- validation:
123
- datasets:
124
- - name: FastMRI
125
- transforms:
126
- estimate_sensitivity_maps: true
127
- scaling_key: masked_kspace
128
- masking:
129
- name: FastMRIEquispaced
130
- accelerations:
131
- - 4
132
- center_fractions:
133
- - 0.08
134
- scale_percentile: 0.995
135
- use_seed: true
136
- text_description: 4x
137
- - name: FastMRI
138
- transforms:
139
- estimate_sensitivity_maps: true
140
- scaling_key: masked_kspace
141
- masking:
142
- name: FastMRIEquispaced
143
- accelerations:
144
- - 8
145
- center_fractions:
146
- - 0.04
147
- scale_percentile: 0.995
148
- use_seed: true
149
- text_description: 8x
150
- - name: FastMRI
151
- transforms:
152
- estimate_sensitivity_maps: true
153
- scaling_key: masked_kspace
154
- masking:
155
- name: FastMRIEquispaced
156
- accelerations:
157
- - 16
158
- center_fractions:
159
- - 0.02
160
- scale_percentile: 0.995
161
- use_seed: true
162
- text_description: 16x
163
- batch_size: 20
164
- metrics:
165
- - fastmri_psnr
166
- - fastmri_ssim
167
- - fastmri_nmse
168
- regularizers: []
169
- crop: header
170
  inference:
171
- dataset:
172
- name: FastMRI
173
- transforms:
174
- masking:
175
- name: FastMRIEquispaced
176
- accelerations:
177
- - 4.0
178
- center_fractions:
179
- - 0.08
180
- mode: STATIC
181
- cropping:
182
- crop: null
183
- sensitivity_map_estimation:
184
- estimate_sensitivity_maps: true
185
- normalization:
186
- scaling_key: masked_kspace
187
- scale_percentile: 0.995
188
- use_seed: true
189
- text_description: inference-4x
190
- batch_size: 1
191
- crop: header
192
- logging:
193
- log_as_image: null
194
- tensorboard:
195
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ conv_modulation: FEATURES
22
+ aux_in_features: 2
23
+ log_aux: true
24
+ fc_hidden_features:
25
+ - 32
26
+ - 16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  fc_groups: 1
28
+ fc_activation: SOFTPLUS
29
+ modulation_at_input: true
30
+ image_unet_num_filters: 32
31
+ image_unet_num_pool_layers: 4
32
+ image_unet_dropout: 0.0
33
+ image_unet_norm_type: INSTANCE
34
+ additional_models:
35
+ sensitivity_model:
36
+ model_name: unet.unet_2d.UnetModel2d
37
+ in_channels: 2
38
+ out_channels: 2
39
+ num_filters: 16
40
+ num_pool_layers: 4
41
+ dropout_probability: 0.0
42
+ conv_out_bias: false
43
  physics:
44
+ forward_operator: fft2
45
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  inference:
47
+ batch_size: 1
48
+ crop: header
49
+ dataset:
50
+ name: FastMRI
51
+ transforms:
52
+ use_seed: true
53
+ delete_kspace: false
54
+ masking:
55
+ name: FastMRIEquispaced
56
+ accelerations:
57
+ - 4.0
58
+ center_fractions:
59
+ - 0.08
60
+ cropping:
61
+ image_center_crop: false
62
+ sensitivity_map_estimation:
63
+ estimate_sensitivity_maps: true
64
+ normalization:
65
+ scaling_key: masked_kspace
66
+ scale_percentile: 0.995
 
 
 
 
 
knee/vsharp_modconv_features_triang_32_8.yaml CHANGED
@@ -1,195 +1,66 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: FEATURES
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 8
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- random_flip_probability: 0.5
88
- random_rotation_probability: 0.5
89
- model_checkpoint: null
90
- optimizer: Adam
91
- lr: 0.002
92
- weight_decay: 0.0
93
- batch_size: 1
94
- lr_step_size: 15000
95
- lr_gamma: 0.8
96
- lr_warmup_iter: 1000
97
- swa_start_iter: null
98
- num_iterations: 80001
99
- validation_steps: 4000
100
- gradient_steps: 1
101
- gradient_clipping: 0.0
102
- gradient_debug: false
103
- loss:
104
- crop: header
105
- losses:
106
- - function: l1_loss
107
- multiplier: 1.0
108
- - function: ssim_loss
109
- multiplier: 1.0
110
- - function: hfen_l2_norm_loss
111
- multiplier: 1.0
112
- - function: hfen_l1_norm_loss
113
- multiplier: 1.0
114
- - function: kspace_nmae_loss
115
- multiplier: 1.0
116
- - function: kspace_nmse_loss
117
- multiplier: 1.0
118
- checkpointer:
119
- checkpoint_steps: 4000
120
- metrics: []
121
- regularizers: []
122
- validation:
123
- datasets:
124
- - name: FastMRI
125
- transforms:
126
- estimate_sensitivity_maps: true
127
- scaling_key: masked_kspace
128
- masking:
129
- name: FastMRIEquispaced
130
- accelerations:
131
- - 4
132
- center_fractions:
133
- - 0.08
134
- scale_percentile: 0.995
135
- use_seed: true
136
- text_description: 4x
137
- - name: FastMRI
138
- transforms:
139
- estimate_sensitivity_maps: true
140
- scaling_key: masked_kspace
141
- masking:
142
- name: FastMRIEquispaced
143
- accelerations:
144
- - 8
145
- center_fractions:
146
- - 0.04
147
- scale_percentile: 0.995
148
- use_seed: true
149
- text_description: 8x
150
- - name: FastMRI
151
- transforms:
152
- estimate_sensitivity_maps: true
153
- scaling_key: masked_kspace
154
- masking:
155
- name: FastMRIEquispaced
156
- accelerations:
157
- - 16
158
- center_fractions:
159
- - 0.02
160
- scale_percentile: 0.995
161
- use_seed: true
162
- text_description: 16x
163
- batch_size: 20
164
- metrics:
165
- - fastmri_psnr
166
- - fastmri_ssim
167
- - fastmri_nmse
168
- regularizers: []
169
- crop: header
170
  inference:
171
- dataset:
172
- name: FastMRI
173
- transforms:
174
- masking:
175
- name: FastMRIEquispaced
176
- accelerations:
177
- - 4.0
178
- center_fractions:
179
- - 0.08
180
- mode: STATIC
181
- cropping:
182
- crop: null
183
- sensitivity_map_estimation:
184
- estimate_sensitivity_maps: true
185
- normalization:
186
- scaling_key: masked_kspace
187
- scale_percentile: 0.995
188
- use_seed: true
189
- text_description: inference-4x
190
- batch_size: 1
191
- crop: header
192
- logging:
193
- log_as_image: null
194
- tensorboard:
195
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ conv_modulation: FEATURES
22
+ aux_in_features: 2
23
+ log_aux: true
24
+ fc_hidden_features:
25
+ - 32
26
+ - 8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  fc_groups: 1
28
+ fc_activation: SOFTPLUS
29
+ modulation_at_input: false
30
+ image_unet_num_filters: 32
31
+ image_unet_num_pool_layers: 4
32
+ image_unet_dropout: 0.0
33
+ image_unet_norm_type: INSTANCE
34
+ additional_models:
35
+ sensitivity_model:
36
+ model_name: unet.unet_2d.UnetModel2d
37
+ in_channels: 2
38
+ out_channels: 2
39
+ num_filters: 16
40
+ num_pool_layers: 4
41
+ dropout_probability: 0.0
42
+ conv_out_bias: false
43
  physics:
44
+ forward_operator: fft2
45
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  inference:
47
+ batch_size: 1
48
+ crop: header
49
+ dataset:
50
+ name: FastMRI
51
+ transforms:
52
+ use_seed: true
53
+ delete_kspace: false
54
+ masking:
55
+ name: FastMRIEquispaced
56
+ accelerations:
57
+ - 4.0
58
+ center_fractions:
59
+ - 0.08
60
+ cropping:
61
+ image_center_crop: false
62
+ sensitivity_map_estimation:
63
+ estimate_sensitivity_maps: true
64
+ normalization:
65
+ scaling_key: masked_kspace
66
+ scale_percentile: 0.995
 
 
 
 
 
knee/vsharp_triang.yaml CHANGED
@@ -1,195 +1,63 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: NONE
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 32
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- random_flip_probability: 0.5
88
- random_rotation_probability: 0.5
89
- model_checkpoint: null
90
- optimizer: Adam
91
- lr: 0.002
92
- weight_decay: 0.0
93
- batch_size: 1
94
- lr_step_size: 15000
95
- lr_gamma: 0.8
96
- lr_warmup_iter: 1000
97
- swa_start_iter: null
98
- num_iterations: 80001
99
- validation_steps: 4000
100
- gradient_steps: 1
101
- gradient_clipping: 0.0
102
- gradient_debug: false
103
- loss:
104
- crop: header
105
- losses:
106
- - function: l1_loss
107
- multiplier: 1.0
108
- - function: ssim_loss
109
- multiplier: 1.0
110
- - function: hfen_l2_norm_loss
111
- multiplier: 1.0
112
- - function: hfen_l1_norm_loss
113
- multiplier: 1.0
114
- - function: kspace_nmae_loss
115
- multiplier: 1.0
116
- - function: kspace_nmse_loss
117
- multiplier: 1.0
118
- checkpointer:
119
- checkpoint_steps: 4000
120
- metrics: []
121
- regularizers: []
122
- validation:
123
- datasets:
124
- - name: FastMRI
125
- transforms:
126
- estimate_sensitivity_maps: true
127
- scaling_key: masked_kspace
128
- masking:
129
- name: FastMRIEquispaced
130
- accelerations:
131
- - 4
132
- center_fractions:
133
- - 0.08
134
- scale_percentile: 0.995
135
- use_seed: true
136
- text_description: 4x
137
- - name: FastMRI
138
- transforms:
139
- estimate_sensitivity_maps: true
140
- scaling_key: masked_kspace
141
- masking:
142
- name: FastMRIEquispaced
143
- accelerations:
144
- - 8
145
- center_fractions:
146
- - 0.04
147
- scale_percentile: 0.995
148
- use_seed: true
149
- text_description: 8x
150
- - name: FastMRI
151
- transforms:
152
- estimate_sensitivity_maps: true
153
- scaling_key: masked_kspace
154
- masking:
155
- name: FastMRIEquispaced
156
- accelerations:
157
- - 16
158
- center_fractions:
159
- - 0.02
160
- scale_percentile: 0.995
161
- use_seed: true
162
- text_description: 16x
163
- batch_size: 20
164
- metrics:
165
- - fastmri_psnr
166
- - fastmri_ssim
167
- - fastmri_nmse
168
- regularizers: []
169
- crop: header
170
  inference:
171
- dataset:
172
- name: FastMRI
173
- transforms:
174
- masking:
175
- name: FastMRIEquispaced
176
- accelerations:
177
- - 4.0
178
- center_fractions:
179
- - 0.08
180
- mode: STATIC
181
- cropping:
182
- crop: null
183
- sensitivity_map_estimation:
184
- estimate_sensitivity_maps: true
185
- normalization:
186
- scaling_key: masked_kspace
187
- scale_percentile: 0.995
188
- use_seed: true
189
- text_description: inference-4x
190
- batch_size: 1
191
- crop: header
192
- logging:
193
- log_as_image: null
194
- tensorboard:
195
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ aux_in_features: 2
22
+ log_aux: true
23
+ fc_hidden_features:
24
+ - 32
25
+ - 32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  fc_groups: 1
27
+ fc_activation: SOFTPLUS
28
+ image_unet_num_filters: 32
29
+ image_unet_num_pool_layers: 4
30
+ image_unet_dropout: 0.0
31
+ additional_models:
32
+ sensitivity_model:
33
+ model_name: unet.unet_2d.UnetModel2d
34
+ in_channels: 2
35
+ out_channels: 2
36
+ num_filters: 16
37
+ num_pool_layers: 4
38
+ dropout_probability: 0.0
39
+ conv_out_bias: false
40
  physics:
41
+ forward_operator: fft2
42
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  inference:
44
+ batch_size: 1
45
+ crop: header
46
+ dataset:
47
+ name: FastMRI
48
+ transforms:
49
+ use_seed: true
50
+ delete_kspace: false
51
+ masking:
52
+ name: FastMRIEquispaced
53
+ accelerations:
54
+ - 4.0
55
+ center_fractions:
56
+ - 0.08
57
+ cropping:
58
+ image_center_crop: false
59
+ sensitivity_map_estimation:
60
+ estimate_sensitivity_maps: true
61
+ normalization:
62
+ scaling_key: masked_kspace
63
+ scale_percentile: 0.995
 
 
 
 
 
prostate/vsharp_modconv_features_triang.yaml CHANGED
@@ -1,193 +1,66 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: FEATURES
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 32
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- model_checkpoint: null
88
- optimizer: Adam
89
- lr: 0.002
90
- weight_decay: 0.0
91
- batch_size: 1
92
- lr_step_size: 30000
93
- lr_gamma: 0.8
94
- lr_warmup_iter: 1000
95
- swa_start_iter: null
96
- num_iterations: 150000
97
- validation_steps: 4000
98
- gradient_steps: 1
99
- gradient_clipping: 0.0
100
- gradient_debug: false
101
- loss:
102
- crop: header
103
- losses:
104
- - function: l1_loss
105
- multiplier: 1.0
106
- - function: ssim_loss
107
- multiplier: 1.0
108
- - function: hfen_l2_norm_loss
109
- multiplier: 1.0
110
- - function: hfen_l1_norm_loss
111
- multiplier: 1.0
112
- - function: kspace_nmae_loss
113
- multiplier: 1.0
114
- - function: kspace_nmse_loss
115
- multiplier: 1.0
116
- checkpointer:
117
- checkpoint_steps: 4000
118
- metrics: []
119
- regularizers: []
120
- validation:
121
- datasets:
122
- - name: FastMRI
123
- transforms:
124
- estimate_sensitivity_maps: true
125
- scaling_key: masked_kspace
126
- masking:
127
- name: FastMRIEquispaced
128
- accelerations:
129
- - 4
130
- center_fractions:
131
- - 0.08
132
- scale_percentile: 0.995
133
- use_seed: true
134
- text_description: 4x
135
- - name: FastMRI
136
- transforms:
137
- estimate_sensitivity_maps: true
138
- scaling_key: masked_kspace
139
- masking:
140
- name: FastMRIEquispaced
141
- accelerations:
142
- - 8
143
- center_fractions:
144
- - 0.04
145
- scale_percentile: 0.995
146
- use_seed: true
147
- text_description: 8x
148
- - name: FastMRI
149
- transforms:
150
- estimate_sensitivity_maps: true
151
- scaling_key: masked_kspace
152
- masking:
153
- name: FastMRIEquispaced
154
- accelerations:
155
- - 16
156
- center_fractions:
157
- - 0.02
158
- scale_percentile: 0.995
159
- use_seed: true
160
- text_description: 16x
161
- batch_size: 20
162
- metrics:
163
- - fastmri_psnr
164
- - fastmri_ssim
165
- - fastmri_nmse
166
- regularizers: []
167
- crop: header
168
  inference:
169
- dataset:
170
- name: FastMRI
171
- transforms:
172
- masking:
173
- name: FastMRIEquispaced
174
- accelerations:
175
- - 4.0
176
- center_fractions:
177
- - 0.08
178
- mode: STATIC
179
- cropping:
180
- crop: null
181
- sensitivity_map_estimation:
182
- estimate_sensitivity_maps: true
183
- normalization:
184
- scaling_key: masked_kspace
185
- scale_percentile: 0.995
186
- use_seed: true
187
- text_description: inference-4x
188
- batch_size: 1
189
- crop: header
190
- logging:
191
- log_as_image: null
192
- tensorboard:
193
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ conv_modulation: FEATURES
22
+ aux_in_features: 2
23
+ log_aux: true
24
+ fc_hidden_features:
25
+ - 32
26
+ - 32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  fc_groups: 1
28
+ fc_activation: SOFTPLUS
29
+ modulation_at_input: false
30
+ image_unet_num_filters: 32
31
+ image_unet_num_pool_layers: 4
32
+ image_unet_dropout: 0.0
33
+ image_unet_norm_type: INSTANCE
34
+ additional_models:
35
+ sensitivity_model:
36
+ model_name: unet.unet_2d.UnetModel2d
37
+ in_channels: 2
38
+ out_channels: 2
39
+ num_filters: 16
40
+ num_pool_layers: 4
41
+ dropout_probability: 0.0
42
+ conv_out_bias: false
43
  physics:
44
+ forward_operator: fft2
45
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  inference:
47
+ batch_size: 1
48
+ crop: header
49
+ dataset:
50
+ name: FastMRI
51
+ transforms:
52
+ use_seed: true
53
+ delete_kspace: false
54
+ masking:
55
+ name: FastMRIEquispaced
56
+ accelerations:
57
+ - 4.0
58
+ center_fractions:
59
+ - 0.08
60
+ cropping:
61
+ image_center_crop: false
62
+ sensitivity_map_estimation:
63
+ estimate_sensitivity_maps: true
64
+ normalization:
65
+ scaling_key: masked_kspace
66
+ scale_percentile: 0.995
 
 
 
 
 
prostate/vsharp_modconv_features_triang_32_16.yaml CHANGED
@@ -1,193 +1,66 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: FEATURES
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 16
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- model_checkpoint: null
88
- optimizer: Adam
89
- lr: 0.002
90
- weight_decay: 0.0
91
- batch_size: 1
92
- lr_step_size: 30000
93
- lr_gamma: 0.8
94
- lr_warmup_iter: 1000
95
- swa_start_iter: null
96
- num_iterations: 150000
97
- validation_steps: 4000
98
- gradient_steps: 1
99
- gradient_clipping: 0.0
100
- gradient_debug: false
101
- loss:
102
- crop: header
103
- losses:
104
- - function: l1_loss
105
- multiplier: 1.0
106
- - function: ssim_loss
107
- multiplier: 1.0
108
- - function: hfen_l2_norm_loss
109
- multiplier: 1.0
110
- - function: hfen_l1_norm_loss
111
- multiplier: 1.0
112
- - function: kspace_nmae_loss
113
- multiplier: 1.0
114
- - function: kspace_nmse_loss
115
- multiplier: 1.0
116
- checkpointer:
117
- checkpoint_steps: 4000
118
- metrics: []
119
- regularizers: []
120
- validation:
121
- datasets:
122
- - name: FastMRI
123
- transforms:
124
- estimate_sensitivity_maps: true
125
- scaling_key: masked_kspace
126
- masking:
127
- name: FastMRIEquispaced
128
- accelerations:
129
- - 4
130
- center_fractions:
131
- - 0.08
132
- scale_percentile: 0.995
133
- use_seed: true
134
- text_description: 4x
135
- - name: FastMRI
136
- transforms:
137
- estimate_sensitivity_maps: true
138
- scaling_key: masked_kspace
139
- masking:
140
- name: FastMRIEquispaced
141
- accelerations:
142
- - 8
143
- center_fractions:
144
- - 0.04
145
- scale_percentile: 0.995
146
- use_seed: true
147
- text_description: 8x
148
- - name: FastMRI
149
- transforms:
150
- estimate_sensitivity_maps: true
151
- scaling_key: masked_kspace
152
- masking:
153
- name: FastMRIEquispaced
154
- accelerations:
155
- - 16
156
- center_fractions:
157
- - 0.02
158
- scale_percentile: 0.995
159
- use_seed: true
160
- text_description: 16x
161
- batch_size: 20
162
- metrics:
163
- - fastmri_psnr
164
- - fastmri_ssim
165
- - fastmri_nmse
166
- regularizers: []
167
- crop: header
168
  inference:
169
- dataset:
170
- name: FastMRI
171
- transforms:
172
- masking:
173
- name: FastMRIEquispaced
174
- accelerations:
175
- - 4.0
176
- center_fractions:
177
- - 0.08
178
- mode: STATIC
179
- cropping:
180
- crop: null
181
- sensitivity_map_estimation:
182
- estimate_sensitivity_maps: true
183
- normalization:
184
- scaling_key: masked_kspace
185
- scale_percentile: 0.995
186
- use_seed: true
187
- text_description: inference-4x
188
- batch_size: 1
189
- crop: header
190
- logging:
191
- log_as_image: null
192
- tensorboard:
193
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ conv_modulation: FEATURES
22
+ aux_in_features: 2
23
+ log_aux: true
24
+ fc_hidden_features:
25
+ - 32
26
+ - 16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  fc_groups: 1
28
+ fc_activation: SOFTPLUS
29
+ modulation_at_input: false
30
+ image_unet_num_filters: 32
31
+ image_unet_num_pool_layers: 4
32
+ image_unet_dropout: 0.0
33
+ image_unet_norm_type: INSTANCE
34
+ additional_models:
35
+ sensitivity_model:
36
+ model_name: unet.unet_2d.UnetModel2d
37
+ in_channels: 2
38
+ out_channels: 2
39
+ num_filters: 16
40
+ num_pool_layers: 4
41
+ dropout_probability: 0.0
42
+ conv_out_bias: false
43
  physics:
44
+ forward_operator: fft2
45
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  inference:
47
+ batch_size: 1
48
+ crop: header
49
+ dataset:
50
+ name: FastMRI
51
+ transforms:
52
+ use_seed: true
53
+ delete_kspace: false
54
+ masking:
55
+ name: FastMRIEquispaced
56
+ accelerations:
57
+ - 4.0
58
+ center_fractions:
59
+ - 0.08
60
+ cropping:
61
+ image_center_crop: false
62
+ sensitivity_map_estimation:
63
+ estimate_sensitivity_maps: true
64
+ normalization:
65
+ scaling_key: masked_kspace
66
+ scale_percentile: 0.995
 
 
 
 
 
prostate/vsharp_modconv_features_triang_32_8.yaml CHANGED
@@ -1,193 +1,66 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: FEATURES
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 8
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- model_checkpoint: null
88
- optimizer: Adam
89
- lr: 0.002
90
- weight_decay: 0.0
91
- batch_size: 1
92
- lr_step_size: 30000
93
- lr_gamma: 0.8
94
- lr_warmup_iter: 1000
95
- swa_start_iter: null
96
- num_iterations: 150000
97
- validation_steps: 4000
98
- gradient_steps: 1
99
- gradient_clipping: 0.0
100
- gradient_debug: false
101
- loss:
102
- crop: header
103
- losses:
104
- - function: l1_loss
105
- multiplier: 1.0
106
- - function: ssim_loss
107
- multiplier: 1.0
108
- - function: hfen_l2_norm_loss
109
- multiplier: 1.0
110
- - function: hfen_l1_norm_loss
111
- multiplier: 1.0
112
- - function: kspace_nmae_loss
113
- multiplier: 1.0
114
- - function: kspace_nmse_loss
115
- multiplier: 1.0
116
- checkpointer:
117
- checkpoint_steps: 4000
118
- metrics: []
119
- regularizers: []
120
- validation:
121
- datasets:
122
- - name: FastMRI
123
- transforms:
124
- estimate_sensitivity_maps: true
125
- scaling_key: masked_kspace
126
- masking:
127
- name: FastMRIEquispaced
128
- accelerations:
129
- - 4
130
- center_fractions:
131
- - 0.08
132
- scale_percentile: 0.995
133
- use_seed: true
134
- text_description: 4x
135
- - name: FastMRI
136
- transforms:
137
- estimate_sensitivity_maps: true
138
- scaling_key: masked_kspace
139
- masking:
140
- name: FastMRIEquispaced
141
- accelerations:
142
- - 8
143
- center_fractions:
144
- - 0.04
145
- scale_percentile: 0.995
146
- use_seed: true
147
- text_description: 8x
148
- - name: FastMRI
149
- transforms:
150
- estimate_sensitivity_maps: true
151
- scaling_key: masked_kspace
152
- masking:
153
- name: FastMRIEquispaced
154
- accelerations:
155
- - 16
156
- center_fractions:
157
- - 0.02
158
- scale_percentile: 0.995
159
- use_seed: true
160
- text_description: 16x
161
- batch_size: 20
162
- metrics:
163
- - fastmri_psnr
164
- - fastmri_ssim
165
- - fastmri_nmse
166
- regularizers: []
167
- crop: header
168
  inference:
169
- dataset:
170
- name: FastMRI
171
- transforms:
172
- masking:
173
- name: FastMRIEquispaced
174
- accelerations:
175
- - 4.0
176
- center_fractions:
177
- - 0.08
178
- mode: STATIC
179
- cropping:
180
- crop: null
181
- sensitivity_map_estimation:
182
- estimate_sensitivity_maps: true
183
- normalization:
184
- scaling_key: masked_kspace
185
- scale_percentile: 0.995
186
- use_seed: true
187
- text_description: inference-4x
188
- batch_size: 1
189
- crop: header
190
- logging:
191
- log_as_image: null
192
- tensorboard:
193
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ conv_modulation: FEATURES
22
+ aux_in_features: 2
23
+ log_aux: true
24
+ fc_hidden_features:
25
+ - 32
26
+ - 8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  fc_groups: 1
28
+ fc_activation: SOFTPLUS
29
+ modulation_at_input: false
30
+ image_unet_num_filters: 32
31
+ image_unet_num_pool_layers: 4
32
+ image_unet_dropout: 0.0
33
+ image_unet_norm_type: INSTANCE
34
+ additional_models:
35
+ sensitivity_model:
36
+ model_name: unet.unet_2d.UnetModel2d
37
+ in_channels: 2
38
+ out_channels: 2
39
+ num_filters: 16
40
+ num_pool_layers: 4
41
+ dropout_probability: 0.0
42
+ conv_out_bias: false
43
  physics:
44
+ forward_operator: fft2
45
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  inference:
47
+ batch_size: 1
48
+ crop: header
49
+ dataset:
50
+ name: FastMRI
51
+ transforms:
52
+ use_seed: true
53
+ delete_kspace: false
54
+ masking:
55
+ name: FastMRIEquispaced
56
+ accelerations:
57
+ - 4.0
58
+ center_fractions:
59
+ - 0.08
60
+ cropping:
61
+ image_center_crop: false
62
+ sensitivity_map_estimation:
63
+ estimate_sensitivity_maps: true
64
+ normalization:
65
+ scaling_key: masked_kspace
66
+ scale_percentile: 0.995
 
 
 
 
 
prostate/vsharp_triang.yaml CHANGED
@@ -1,193 +1,63 @@
1
  model:
2
- model_name: vsharp.vsharp.VSharpNet
3
- num_steps: 12
4
- num_steps_dc_gd: 10
5
- image_init: SENSE
6
- no_parameter_sharing: true
7
- auxiliary_steps: -1
8
- image_model_architecture: UNET
9
- initializer_channels:
10
- - 32
11
- - 32
12
- - 64
13
- - 64
14
- initializer_dilations:
15
- - 1
16
- - 1
17
- - 2
18
- - 4
19
- initializer_multiscale: 1
20
- initializer_activation: PRELU
21
- conv_modulation: NONE
22
- aux_in_features: 2
23
- log_aux: true
24
- fc_hidden_features:
25
- - 32
26
- - 32
27
- fc_groups: 1
28
- fc_activation: SOFTPLUS
29
- num_weights: null
30
- modulation_at_input: false
31
- image_resnet_hidden_channels: 128
32
- image_resnet_num_blocks: 15
33
- image_resnet_batchnorm: true
34
- image_resnet_scale: 0.1
35
- image_unet_num_filters: 32
36
- image_unet_num_pool_layers: 4
37
- image_unet_dropout: 0.0
38
- image_unet_norm_type: INSTANCE
39
- image_unet_adain_hidden_features: null
40
- image_didn_hidden_channels: 16
41
- image_didn_num_dubs: 6
42
- image_didn_num_convs_recon: 9
43
- image_conv_hidden_channels: 64
44
- image_conv_n_convs: 15
45
- image_conv_activation: ActivationType.RELU
46
- image_conv_batchnorm: false
47
- additional_models:
48
- sensitivity_model:
49
- model_name: unet.unet_2d.UnetModel2d
50
- in_channels: 2
51
- out_channels: 2
52
- num_filters: 16
53
- num_pool_layers: 4
54
- dropout_probability: 0.0
55
- modulation: NONE
56
- aux_in_features: null
57
- fc_hidden_features: null
58
  fc_groups: 1
59
- fc_activation: SIGMOID
60
- num_weights: null
61
- conv_out_bias: false
 
 
 
 
 
 
 
 
 
 
62
  physics:
63
- forward_operator: fft2
64
- backward_operator: ifft2
65
- use_noise_matrix: false
66
- noise_matrix_scaling: 1.0
67
- training:
68
- datasets:
69
- - name: FastMRI
70
- transforms:
71
- crop: reconstruction_size
72
- estimate_sensitivity_maps: true
73
- scaling_key: masked_kspace
74
- image_center_crop: false
75
- masking:
76
- name: FastMRIEquispaced
77
- accelerations:
78
- - 4
79
- - 16
80
- center_fractions:
81
- - 0.08
82
- - 0.02
83
- range_mode: LINEAR
84
- scale_percentile: 0.995
85
- use_seed: false
86
- delete_kspace: false
87
- model_checkpoint: null
88
- optimizer: Adam
89
- lr: 0.002
90
- weight_decay: 0.0
91
- batch_size: 1
92
- lr_step_size: 30000
93
- lr_gamma: 0.8
94
- lr_warmup_iter: 1000
95
- swa_start_iter: null
96
- num_iterations: 150000
97
- validation_steps: 4000
98
- gradient_steps: 1
99
- gradient_clipping: 0.0
100
- gradient_debug: false
101
- loss:
102
- crop: header
103
- losses:
104
- - function: l1_loss
105
- multiplier: 1.0
106
- - function: ssim_loss
107
- multiplier: 1.0
108
- - function: hfen_l2_norm_loss
109
- multiplier: 1.0
110
- - function: hfen_l1_norm_loss
111
- multiplier: 1.0
112
- - function: kspace_nmae_loss
113
- multiplier: 1.0
114
- - function: kspace_nmse_loss
115
- multiplier: 1.0
116
- checkpointer:
117
- checkpoint_steps: 4000
118
- metrics: []
119
- regularizers: []
120
- validation:
121
- datasets:
122
- - name: FastMRI
123
- transforms:
124
- estimate_sensitivity_maps: true
125
- scaling_key: masked_kspace
126
- masking:
127
- name: FastMRIEquispaced
128
- accelerations:
129
- - 4
130
- center_fractions:
131
- - 0.08
132
- scale_percentile: 0.995
133
- use_seed: true
134
- text_description: 4x
135
- - name: FastMRI
136
- transforms:
137
- estimate_sensitivity_maps: true
138
- scaling_key: masked_kspace
139
- masking:
140
- name: FastMRIEquispaced
141
- accelerations:
142
- - 8
143
- center_fractions:
144
- - 0.04
145
- scale_percentile: 0.995
146
- use_seed: true
147
- text_description: 8x
148
- - name: FastMRI
149
- transforms:
150
- estimate_sensitivity_maps: true
151
- scaling_key: masked_kspace
152
- masking:
153
- name: FastMRIEquispaced
154
- accelerations:
155
- - 16
156
- center_fractions:
157
- - 0.02
158
- scale_percentile: 0.995
159
- use_seed: true
160
- text_description: 16x
161
- batch_size: 20
162
- metrics:
163
- - fastmri_psnr
164
- - fastmri_ssim
165
- - fastmri_nmse
166
- regularizers: []
167
- crop: header
168
  inference:
169
- dataset:
170
- name: FastMRI
171
- transforms:
172
- masking:
173
- name: FastMRIEquispaced
174
- accelerations:
175
- - 4.0
176
- center_fractions:
177
- - 0.08
178
- mode: STATIC
179
- cropping:
180
- crop: null
181
- sensitivity_map_estimation:
182
- estimate_sensitivity_maps: true
183
- normalization:
184
- scaling_key: masked_kspace
185
- scale_percentile: 0.995
186
- use_seed: true
187
- text_description: inference-4x
188
- batch_size: 1
189
- crop: header
190
- logging:
191
- log_as_image: null
192
- tensorboard:
193
- num_images: 4
 
1
  model:
2
+ model_name: vsharp.vsharp.VSharpNet
3
+ num_steps: 12
4
+ num_steps_dc_gd: 10
5
+ image_init: SENSE
6
+ no_parameter_sharing: true
7
+ auxiliary_steps: -1
8
+ image_model_architecture: UNET
9
+ initializer_channels:
10
+ - 32
11
+ - 32
12
+ - 64
13
+ - 64
14
+ initializer_dilations:
15
+ - 1
16
+ - 1
17
+ - 2
18
+ - 4
19
+ initializer_multiscale: 1
20
+ initializer_activation: PRELU
21
+ aux_in_features: 2
22
+ log_aux: true
23
+ fc_hidden_features:
24
+ - 32
25
+ - 32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  fc_groups: 1
27
+ fc_activation: SOFTPLUS
28
+ image_unet_num_filters: 32
29
+ image_unet_num_pool_layers: 4
30
+ image_unet_dropout: 0.0
31
+ additional_models:
32
+ sensitivity_model:
33
+ model_name: unet.unet_2d.UnetModel2d
34
+ in_channels: 2
35
+ out_channels: 2
36
+ num_filters: 16
37
+ num_pool_layers: 4
38
+ dropout_probability: 0.0
39
+ conv_out_bias: false
40
  physics:
41
+ forward_operator: fft2
42
+ backward_operator: ifft2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  inference:
44
+ batch_size: 1
45
+ crop: header
46
+ dataset:
47
+ name: FastMRI
48
+ transforms:
49
+ use_seed: true
50
+ delete_kspace: false
51
+ masking:
52
+ name: FastMRIEquispaced
53
+ accelerations:
54
+ - 4.0
55
+ center_fractions:
56
+ - 0.08
57
+ cropping:
58
+ image_center_crop: false
59
+ sensitivity_map_estimation:
60
+ estimate_sensitivity_maps: true
61
+ normalization:
62
+ scaling_key: masked_kspace
63
+ scale_percentile: 0.995