AugmentedGPR¶
sgptools.core.augmented_gpr.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 paper for more details
- Jakkala and Akella, 2025. Fully differentiable sensor placement and informative path planning.
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
|