Skip to content

Commit

Permalink
update mfk
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul-Saves committed Nov 13, 2023
1 parent e93597b commit 8ef7822
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smt/applications/mfk.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def __call__(self, nb_samples_hifi):

doe = []
p0 = LHS(
xlimits=self.design_space.get_x_limits(),
xlimits=np.array(self.design_space.get_x_limits()),
criterion="ese",
random_state=self.random_state,
)
Expand All @@ -113,7 +113,7 @@ def __call__(self, nb_samples_hifi):

for i in range(1, self.nlevel):
p = LHS(
xlimits=self.design_space.get_x_limits(),
xlimits=np.array(self.design_space.get_x_limits()),
criterion="ese",
random_state=self.random_state,
)
Expand Down

0 comments on commit 8ef7822

Please sign in to comment.