Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TrajectorySampler amenable to any Kernel/IndVar #606

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion tests/unit/models/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@
svgp_model,
vgp_model,
)
from tests.util.models.gpflux.models import simple_two_layer_dgp_model, two_layer_dgp_model
from tests.util.models.gpflux.models import (
simple_two_layer_dgp_model,
two_layer_dgp_model,
two_layer_flexible_dgp_model,
)

from trieste.data import Dataset
from trieste.models.gpflow import (
GaussianProcessRegression,
Expand Down Expand Up @@ -94,3 +99,18 @@ def _compile_fixture(request: Any) -> bool:
@pytest.fixture(name="two_layer_model", params=[two_layer_dgp_model, simple_two_layer_dgp_model])
def _two_layer_model_fixture(request: Any) -> Callable[[TensorType], DeepGP]:
return request.param


@pytest.fixture(name="two_layer_model_modified", params=[two_layer_flexible_dgp_model])
def _two_layer_model_modified_fixture(request: Any) -> Callable[[TensorType], DeepGP]:
return request.param


@pytest.fixture(name="separate_case", params=[True])
def _separate_case_fixture(request: Any) -> bool:
return request.param


@pytest.fixture(name="output_dim", params=[2])
def _output_dim_fixture(request: Any) -> bool:
return request.param
Loading