Skip to content

Commit 1d755b1

Browse files
authored
Transform before sending variables to objective function (#150)
1 parent c0323de commit 1d755b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/popt/loop/ensemble_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def function(self, x, *args, **kwargs):
133133
self.pred_data,
134134
input_dict=self.sim.input_dict,
135135
true_order=self.sim.true_order,
136-
state=matrix_to_dict(x, self.idX),
136+
state=matrix_to_dict(self.invert_scale_state(x), self.idX),
137137
**kwargs
138138
)
139139
else:

0 commit comments

Comments
 (0)