Uploaded Test files
This commit is contained in:
parent
f584ad9d97
commit
2e81cb7d99
16627 changed files with 2065359 additions and 102444 deletions
19
venv/Lib/site-packages/sklearn/gaussian_process/__init__.py
Normal file
19
venv/Lib/site-packages/sklearn/gaussian_process/__init__.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Author: Jan Hendrik Metzen <jhm@informatik.uni-bremen.de>
|
||||
# Vincent Dubourg <vincent.dubourg@gmail.com>
|
||||
# (mostly translation, see implementation details)
|
||||
# License: BSD 3 clause
|
||||
|
||||
"""
|
||||
The :mod:`sklearn.gaussian_process` module implements Gaussian Process
|
||||
based regression and classification.
|
||||
"""
|
||||
|
||||
from ._gpr import GaussianProcessRegressor
|
||||
from ._gpc import GaussianProcessClassifier
|
||||
from . import kernels
|
||||
|
||||
|
||||
__all__ = ['GaussianProcessRegressor', 'GaussianProcessClassifier',
|
||||
'kernels']
|
Loading…
Add table
Add a link
Reference in a new issue