(self, gt_dict, hyperparams, normalization_dict)
| 413 | |
| 414 | |
| 415 | def forward(self, gt_dict, hyperparams, normalization_dict): |
| 416 | if hyperparams.normalize_input: |
| 417 | gt_dict = normalize_gt_data(gt_dict, normalization_dict) |
| 418 | encoded_dict = self.encoder(gt_dict) |
| 419 | pred_dict=self.decoder(encoded_dict["z"], hyperparams, normalization_dict) |
| 420 | return pred_dict, encoded_dict |
nothing calls this directly
no test coverage detected