mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-02 14:45:15 +02:00
Fix docstring for gp.py::GP.__init__() (#915)
Removed indication in docstring that was incorrect: `kernel` is a required arg, but docstring stated it was optional. Now, docstring does not say it's optional.
This commit is contained in:
parent
ff82f12c3d
commit
6751515c19
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ class GP(Model):
|
||||||
|
|
||||||
:param X: input observations
|
:param X: input observations
|
||||||
:param Y: output observations
|
:param Y: output observations
|
||||||
:param kernel: a GPy kernel, defaults to rbf+white
|
:param kernel: a GPy kernel
|
||||||
:param likelihood: a GPy likelihood
|
:param likelihood: a GPy likelihood
|
||||||
:param inference_method: The :class:`~GPy.inference.latent_function_inference.LatentFunctionInference` inference method to use for this GP
|
:param inference_method: The :class:`~GPy.inference.latent_function_inference.LatentFunctionInference` inference method to use for this GP
|
||||||
:rtype: model object
|
:rtype: model object
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue