17 lines
454 B
Python
17 lines
454 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Author: Vincent Dubourg <vincent.dubourg@gmail.com>
|
|
# (mostly translation, see implementation details)
|
|
# Licence: BSD 3 clause
|
|
|
|
"""
|
|
The :mod:`sklearn.gaussian_process` module implements scalar Gaussian Process
|
|
based predictions.
|
|
"""
|
|
|
|
from .gaussian_process import GaussianProcess
|
|
from . import correlation_models
|
|
from . import regression_models
|
|
|
|
__all__ = ['GaussianProcess', 'correlation_models', 'regression_models']
|