AugmentedGPR
sgptools.models.core.augmented_gpr
Provides a Gaussian process model with expand and aggregate functions
AugmentedGPR
Bases: GPR
GPR model from the GPFlow library augmented to use a transform object's expand and aggregate functions on the data points where necessary.
Refer to the following papers for more details
- Efficient Sensor Placement from Regression with Sparse Gaussian Processes in Continuous and Discrete Spaces [Jakkala and Akella, 2023]
- Multi-Robot Informative Path Planning from Regression with Sparse Gaussian Processes [Jakkala and Akella, 2024]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
data |
tuple
|
(X, y) ndarrays with inputs (n, d) and labels (n, 1) |
required |
kernel |
Kernel
|
gpflow kernel function |
required |
noise_variance |
float
|
data variance |
required |
transform |
Transform
|
Transform object |
None
|