Skip to content

Commit 7c9358c

Browse files
committed
remove extra reshape
1 parent f958242 commit 7c9358c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tsuchinoko/graphs/specialized.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ def compute(self, data, engine: 'GPCAMInProcessEngine'):
397397
posterior_mean = engine.optimizer.posterior_mean(grid_positions)['f(x)'].reshape(*grid_shape)
398398

399399
# invert posterior_mean
400-
real_space_posterior_mean = posterior_mean.reshape(self.shape)
400+
real_space_posterior_mean = posterior_mean
401401

402402
# assign to data object with lock
403403
with data.w_lock():

0 commit comments

Comments
 (0)