Skip to content

Commit

Permalink
changed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusMNoack committed Mar 14, 2024
1 parent 415adef commit 1db21eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_fvgp.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def test_train_basic():
method = "local", pop_size = 10, tolerance = 0.001,max_iter = 2)
my_gp1.train(hyperparameter_bounds=np.array([[0.01,1],[0.01,10],[0.01,10],[0.01,10],[0.01,10],[0.01,10]]),
method = "global", pop_size = 10, tolerance = 0.001,max_iter = 2)
#my_gp1.train(hyperparameter_bounds=np.array([[0.01,1],[0.01,10],[0.01,10],[0.01,10],[0.01,10],[0.01,10]]),
# method = "hgdl", pop_size = 10, tolerance = 0.001,max_iter = 2)
my_gp1.train(hyperparameter_bounds=np.array([[0.01,1],[0.01,10],[0.01,10],[0.01,10],[0.01,10],[0.01,10]]),
method = "hgdl", pop_size = 10, tolerance = 0.001,max_iter = 2)
my_gp1.train(hyperparameter_bounds=np.array([[0.01,1],[0.01,10],[0.01,10],[0.01,10],[0.01,10],[0.01,10]]),
method = "mcmc", pop_size = 10, tolerance = 0.001,max_iter = 2)

Expand Down Expand Up @@ -134,8 +134,8 @@ def test_train_hgdl():
compute_device="cpu", store_inv = True, ram_economy = True)


#my_gp2.train(hyperparameter_bounds=np.array([[0.01,10],[0.01,10],[0.01,10],[0.01,10],[0.01,10],[0.01,10]]),
# method = "hgdl", tolerance = 0.001, max_iter = 2)
my_gp2.train(hyperparameter_bounds=np.array([[0.01,10],[0.01,10],[0.01,10],[0.01,10],[0.01,10],[0.01,10]]),
method = "hgdl", tolerance = 0.001, max_iter = 2)


def test_train_hgdl_async():
Expand Down

0 comments on commit 1db21eb

Please sign in to comment.