Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sklearn/gaussian_process/_gpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,8 @@ class GaussianProcessClassifier(ClassifierMixin, BaseEstimator):

Read more in the :ref:`User Guide <gaussian_process>`.

.. versionadded:: 0.18

Parameters
----------
kernel : kernel instance, default=None
Expand Down Expand Up @@ -630,8 +632,6 @@ def optimizer(obj_func, initial_theta, bounds):
>>> gpc.predict_proba(X[:2,:])
array([[0.83548752, 0.03228706, 0.13222543],
[0.79064206, 0.06525643, 0.14410151]])

.. versionadded:: 0.18
"""

def __init__(
Expand Down