gpytorchwrapper.src.models.gp_models
Classes
|
Multi-output GP with RBF kernel |
|
Simple isotropic GP with RBF kernel |
|
Learn different lengthscales for each feature |
|
Test model for debugging |
|
- class gpytorchwrapper.src.models.gp_models.BIMultitaskRBF(train_x, train_y, likelihood)[source]
Bases:
ExactGP
Multi-output GP with RBF kernel
- forward(x)[source]
Define the computation performed at every call.
Should be overridden by all subclasses.
Note
Although the recipe for forward pass needs to be defined within this function, one should call the
Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.
- class gpytorchwrapper.src.models.gp_models.SingleGPRBF(train_x, train_y, likelihood)[source]
Bases:
ExactGP
Simple isotropic GP with RBF kernel
- forward(x)[source]
Define the computation performed at every call.
Should be overridden by all subclasses.
Note
Although the recipe for forward pass needs to be defined within this function, one should call the
Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.
- class gpytorchwrapper.src.models.gp_models.SingleGPRBFARD(train_x, train_y, likelihood)[source]
Bases:
ExactGP
Learn different lengthscales for each feature
- forward(x)[source]
Define the computation performed at every call.
Should be overridden by all subclasses.
Note
Although the recipe for forward pass needs to be defined within this function, one should call the
Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.
- class gpytorchwrapper.src.models.gp_models.TestModel(train_x, train_y, likelihood)[source]
Bases:
ExactGP
Test model for debugging
- forward(x)[source]
Define the computation performed at every call.
Should be overridden by all subclasses.
Note
Although the recipe for forward pass needs to be defined within this function, one should call the
Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.
- class gpytorchwrapper.src.models.gp_models.TestMultitaskGPModel(train_x, train_y, likelihood)[source]
Bases:
ExactGP
- forward(x)[source]
Define the computation performed at every call.
Should be overridden by all subclasses.
Note
Although the recipe for forward pass needs to be defined within this function, one should call the
Module
instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.