ObservationType - Observations from the ConditionalType that are used to estimate the
parameters of the distribution.ParameterType - Type of parameter estimated by this algorithm, which is used to
parameterize the conditional distribution.PosteriorType - Type of posterior Distribution, which describes the uncertainty of the
parameters after we have incorporated the observations.public interface BayesianEstimatorPredictor<ObservationType,ParameterType,PosteriorType extends Distribution<? extends ParameterType>> extends BayesianEstimator<ObservationType,ParameterType,PosteriorType>
| Modifier and Type | Method and Description |
|---|---|
ComputableDistribution<ObservationType> |
createPredictiveDistribution(PosteriorType posterior)
Creates the predictive distribution of new data given the posterior.
|
learncloneComputableDistribution<ObservationType> createPredictiveDistribution(PosteriorType posterior)
posterior - Posterior distribution from which to compute the predictive posterior.