mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-10 20:42:39 +02:00
missing docstrings
This commit is contained in:
parent
ab3ab6a177
commit
dfb555bbf2
1 changed files with 2 additions and 2 deletions
|
|
@ -11,9 +11,9 @@ class EP(object):
|
||||||
|
|
||||||
:param epsilon: Convergence criterion, maximum squared difference allowed between mean updates to stop iterations (float)
|
:param epsilon: Convergence criterion, maximum squared difference allowed between mean updates to stop iterations (float)
|
||||||
:type epsilon: float
|
:type epsilon: float
|
||||||
:param eta: Power EP thing TODO: Ricardo: what, exactly?
|
:param eta: parameter for fractional EP updates.
|
||||||
:type eta: float64
|
:type eta: float64
|
||||||
:param delta: Power EP thing TODO: Ricardo: what, exactly?
|
:param delta: damping EP updates factor.
|
||||||
:type delta: float64
|
:type delta: float64
|
||||||
"""
|
"""
|
||||||
self.epsilon, self.eta, self.delta = epsilon, eta, delta
|
self.epsilon, self.eta, self.delta = epsilon, eta, delta
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue