Skip to content

Commit

Permalink
Use acquisition function abbreviation
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianSosic committed Sep 5, 2024
1 parent d60c3a3 commit b98b074
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_iterations.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pytest
from pytest import param

from baybe.acquisition import qKG, qNIPV, qThompsonSampling, qUCB
from baybe.acquisition import qKG, qNIPV, qTS, qUCB
from baybe.acquisition.base import AcquisitionFunction
from baybe.exceptions import UnusedObjectWarning
from baybe.kernels.base import Kernel
Expand Down Expand Up @@ -302,7 +302,7 @@ def test_meta_recommenders(campaign, n_iterations, batch_size):
run_iterations(campaign, n_iterations, batch_size)


@pytest.mark.parametrize("acqf", [qThompsonSampling(), qUCB()])
@pytest.mark.parametrize("acqf", [qTS(), qUCB()])
@pytest.mark.parametrize("surrogate_model", [BetaBernoulliMultiArmedBanditSurrogate()])
@pytest.mark.parametrize(
"parameter_names",
Expand Down

0 comments on commit b98b074

Please sign in to comment.