mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-15 06:52:39 +02:00
added comments for models module and adjusted setup
This commit is contained in:
parent
622f2e29aa
commit
25635571af
3 changed files with 14 additions and 3 deletions
|
|
@ -1,9 +1,17 @@
|
|||
'''
|
||||
Created on 14 Nov 2013
|
||||
GPy Models
|
||||
==========
|
||||
|
||||
@author: maxz
|
||||
Implementations for common models used in GP regression and classification.
|
||||
The different models can be viewed in :mod:`GPy.models_modules`, which holds
|
||||
detailed explanations for the different models.
|
||||
|
||||
:warning: This module is a convienince module for endusers to use. For developers
|
||||
see :mod:`GPy.models_modules`, which holds the implementions for each model.
|
||||
'''
|
||||
|
||||
__updated__ = '2013-11-28'
|
||||
|
||||
from models_modules.bayesian_gplvm import BayesianGPLVM
|
||||
from models_modules.gp_regression import GPRegression
|
||||
from models_modules.gp_classification import GPClassification#; _gp_classification = gp_classification ; del gp_classification
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue