You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
401 B
11 lines
401 B
"""Gaussian process based regression and classification."""
|
|
|
|
# Authors: The scikit-learn developers
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
from sklearn.gaussian_process import kernels
|
|
from sklearn.gaussian_process._gpc import GaussianProcessClassifier
|
|
from sklearn.gaussian_process._gpr import GaussianProcessRegressor
|
|
|
|
__all__ = ["GaussianProcessClassifier", "GaussianProcessRegressor", "kernels"]
|