aepsych.means¶
Submodules¶
aepsych.means.constant_partial_grad module¶
- class aepsych.means.constant_partial_grad.ConstantMeanPartialObsGrad(prior=None, batch_shape=torch.Size([]), **kwargs)[source]¶
Bases:
gpytorch.means.constant_mean.ConstantMean
A mean function for use with partial gradient observations.
This follows gpytorch.means.constant_mean_grad and sets the prior mean for derivative observations to 0, though unlike that function it allows for partial observation of derivatives.
The final column of input should be an index that is 0 if the observation is of f, or i if it is of df/dxi.
Initializes internal Module state, shared by both nn.Module and ScriptModule.
- forward(input)[source]¶
Defines 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.- Parameters
input (torch.Tensor) –
- Return type
torch.Tensor
- training: bool¶