Skip to content

Commit

Permalink
Fix execution of log_likelihood tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jgosmann committed Aug 7, 2023
1 parent 266e968 commit 90eb895
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions goppy/test/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ class TestOnlineGP:
"mse": np.array([1.04585738, 1.04888027]),
"derivative": np.array([[[0.85538797]], [[-1.30833924]]]),
"mse_derivative": np.array([[-0.00352932], [-0.00173095]]),
"log_likelihood": -8.51911832,
"log_likelihood_derivative": np.array([-0.76088728, 0.49230927]),
}
],
"log_likelihood": -8.51911832,
"log_likelihood_derivative": np.array([-0.76088728, 0.49230927]),
},
{
# data as lists
Expand All @@ -84,10 +84,10 @@ class TestOnlineGP:
"mse": np.array([1.04585738, 1.04888027]),
"derivative": np.array([[[0.85538797]], [[-1.30833924]]]),
"mse_derivative": np.array([[-0.00352932], [-0.00173095]]),
"log_likelihood": -8.51911832,
"log_likelihood_derivative": np.array([-0.76088728, 0.49230927]),
}
],
"log_likelihood": -8.51911832,
"log_likelihood_derivative": np.array([-0.76088728, 0.49230927]),
},
]

Expand Down

0 comments on commit 90eb895

Please sign in to comment.