minor updates to the docs

This commit is contained in:
mzwiessele 2014-09-05 14:18:37 +01:00
parent 3fff0448be
commit 68fa8b6366
19 changed files with 865 additions and 249 deletions

View file

@ -39,8 +39,9 @@ Obligatory methods
:py:meth:`~GPy.core.model.Model.parameters_changed` :
Updates the internal state of the model and sets the gradient of
each parameter handle in the hierarchy with respect to the
log_likelihod. Thus here we need to put the negative derivative of
the rosenbrock function:
log_likelihod. Thus here we need to set the negative derivative of
the rosenbrock function for the parameters. In this case it is the
gradient for self.X:
self.X.gradient = -scipy.optimize.rosen_der(self.X)