Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ziatdinovmax committed Aug 20, 2023
1 parent 7ba47c3 commit ed68fe3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_acq.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ def test_UCB_beta():
y = 10 * X**2
m = ExactGP(1, 'RBF')
m.fit(rng_keys[0], X, y, num_warmup=100, num_samples=100)
obj1 = UCB(rng_keys[1], m, X_new, 2)
obj2 = UCB(rng_keys[1], m, X_new, 2)
obj1 = UCB(rng_keys[1], m, X_new, beta=2)
obj2 = UCB(rng_keys[1], m, X_new, beta=4)
assert_(not onp.array_equal(obj1, obj2))


Expand Down

0 comments on commit ed68fe3

Please sign in to comment.