Skip to content

Commit

Permalink
fix SVWP test
Browse files Browse the repository at this point in the history
  • Loading branch information
Onno Kampman committed Feb 25, 2024
1 parent fb9c82b commit 90498c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fcest/models/test_wishart_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_sparse_variational_wishart_process(
k = gpflow.kernels.Matern52()
m = SparseVariationalWishartProcess(
D=y.shape[1],
Z=np.arange(y.shape[0]),
Z=np.arange(y.shape[0]).reshape(-1, 1),
nu=y.shape[1],
kernel=k,
)
Expand Down

0 comments on commit 90498c4

Please sign in to comment.