From 6751515c1998a03c25fcb78fc9ef68b9e28c8496 Mon Sep 17 00:00:00 2001 From: Aditya Saini <49980787+adityasaini70@users.noreply.github.com> Date: Tue, 18 May 2021 22:44:58 +0530 Subject: [PATCH] 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. --- GPy/core/gp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/core/gp.py b/GPy/core/gp.py index 66d62f62..0704c6a6 100644 --- a/GPy/core/gp.py +++ b/GPy/core/gp.py @@ -21,7 +21,7 @@ class GP(Model): :param X: input 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 inference_method: The :class:`~GPy.inference.latent_function_inference.LatentFunctionInference` inference method to use for this GP :rtype: model object