Skip to content

Commit 92581a9

Browse files
committed
Merge branch 'localchanges' into gp-module
2 parents 6f5ceb6 + 777ff26 commit 92581a9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pymc3/gp/gp.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,10 @@ def _build_conditional(self, Xnew, X, y, noise, cov_total, mean_total,
210210
return mu, stabilize(cov)
211211

212212
def _get_cond_vals(self, other=None):
213+
# LOOK AT THIS MORE, where to X, y, noise need to come from? depending on situation
214+
# provide this function with **kwargs and return those if given? X=X, y=y, etc
215+
# i think this would be good. could build the gp "from scratch". caching these
216+
# from prior or marglike is a convenience
213217
if other is None:
214218
return self.X, self.y, self.noise, self.cov_func, self.mean_func,
215219
else:

0 commit comments

Comments
 (0)