Skip to content

Commit

Permalink
Trigger tests
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexAndorra authored Aug 22, 2024
1 parent 11e41da commit 8c27cc3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pymc/gp/gp.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,7 @@ def _build_conditional(self, Xnew, X, f, cov_total, mean_total, jitter):
L = cholesky(stabilize(Kxx, jitter))
A = solve_lower(L, Kxs)
v = solve_lower(L, (f - mean_total(X)).T)

mu = self.mean_func(Xnew) + pt.dot(pt.transpose(A), v).T
Kss = self.cov_func(Xnew)
cov = Kss - pt.dot(pt.transpose(A), A)
Expand Down

0 comments on commit 8c27cc3

Please sign in to comment.