We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cd8ffb commit 3c9797dCopy full SHA for 3c9797d
bayesflow/approximators/point_approximator.py
@@ -65,9 +65,9 @@ def estimate(
65
if "inference_variables" in self.standardize:
66
for score_key, score in self.inference_network.scores.items():
67
for head_key in estimates[score_key].keys():
68
- trafo_type = score.TRANSFORMATION_TYPE.get(head_key, "location_scale")
+ transformation_type = score.TRANSFORMATION_TYPE.get(head_key, "location_scale")
69
estimates[score_key][head_key] = self.standardize_layers["inference_variables"](
70
- estimates[score_key][head_key], forward=False, transformation_type=trafo_type
+ estimates[score_key][head_key], forward=False, transformation_type=transformation_type
71
)
72
73
estimates = self._apply_inverse_adapter_to_estimates(estimates, **kwargs)
0 commit comments