mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-10 20:42:39 +02:00
[stochastics] added doc
This commit is contained in:
parent
37b19e6e7a
commit
eadce0ca4f
1 changed files with 5 additions and 0 deletions
|
|
@ -23,6 +23,11 @@ class StochasticStorage(object):
|
|||
|
||||
class SparseGPMissing(StochasticStorage):
|
||||
def __init__(self, model, batchsize=1):
|
||||
"""
|
||||
Here we want to loop over all dimensions everytime.
|
||||
Thus, we can just make sure the loop goes over self.d every
|
||||
time.
|
||||
"""
|
||||
self.d = xrange(model.Y_normalized.shape[1])
|
||||
|
||||
class SparseGPStochastics(StochasticStorage):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue